- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @generated SignedSource<<9194d576893a97a6d9b88f5a32c71197>>
|
|
*/
|
|
|
|
/**
|
|
* IMPORTANT: Do NOT modify this file directly.
|
|
*
|
|
* To change the definition of the flags, edit
|
|
* packages/react-native/scripts/featureflags/ReactNativeFeatureFlags.config.js.
|
|
*
|
|
* To regenerate this code, run the following script from the repo root:
|
|
* yarn featureflags-update
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace facebook::react {
|
|
|
|
class ReactNativeFeatureFlagsProvider {
|
|
public:
|
|
virtual ~ReactNativeFeatureFlagsProvider() = default;
|
|
|
|
virtual bool commonTestFlag() = 0;
|
|
virtual bool androidEnablePendingFabricTransactions() = 0;
|
|
virtual bool batchRenderingUpdatesInEventLoop() = 0;
|
|
virtual bool destroyFabricSurfacesInReactInstanceManager() = 0;
|
|
virtual bool enableBackgroundExecutor() = 0;
|
|
virtual bool useModernRuntimeScheduler() = 0;
|
|
virtual bool enableMicrotasks() = 0;
|
|
virtual bool enableSpannableBuildingUnification() = 0;
|
|
virtual bool enableCustomDrawOrderFabric() = 0;
|
|
virtual bool enableFixForClippedSubviewsCrash() = 0;
|
|
virtual bool inspectorEnableCxxInspectorPackagerConnection() = 0;
|
|
virtual bool inspectorEnableModernCDPRegistry() = 0;
|
|
};
|
|
|
|
} // namespace facebook::react
|