- 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>
59 lines
1.7 KiB
C++
59 lines
1.7 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<<a62e65429512894e2d7c6ea696cebcba>>
|
|
*/
|
|
|
|
/**
|
|
* 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
|
|
|
|
#include <FBReactNativeSpec/FBReactNativeSpecJSI.h>
|
|
|
|
namespace facebook::react {
|
|
|
|
class NativeReactNativeFeatureFlags
|
|
: public NativeReactNativeFeatureFlagsCxxSpec<
|
|
NativeReactNativeFeatureFlags>,
|
|
std::enable_shared_from_this<NativeReactNativeFeatureFlags> {
|
|
public:
|
|
NativeReactNativeFeatureFlags(std::shared_ptr<CallInvoker> jsInvoker);
|
|
|
|
bool commonTestFlag(jsi::Runtime& runtime);
|
|
|
|
bool androidEnablePendingFabricTransactions(jsi::Runtime& runtime);
|
|
|
|
bool batchRenderingUpdatesInEventLoop(jsi::Runtime& runtime);
|
|
|
|
bool destroyFabricSurfacesInReactInstanceManager(jsi::Runtime& runtime);
|
|
|
|
bool enableBackgroundExecutor(jsi::Runtime& runtime);
|
|
|
|
bool useModernRuntimeScheduler(jsi::Runtime& runtime);
|
|
|
|
bool enableMicrotasks(jsi::Runtime& runtime);
|
|
|
|
bool enableSpannableBuildingUnification(jsi::Runtime& runtime);
|
|
|
|
bool enableCustomDrawOrderFabric(jsi::Runtime& runtime);
|
|
|
|
bool enableFixForClippedSubviewsCrash(jsi::Runtime& runtime);
|
|
|
|
bool inspectorEnableCxxInspectorPackagerConnection(jsi::Runtime& runtime);
|
|
|
|
bool inspectorEnableModernCDPRegistry(jsi::Runtime& runtime);
|
|
};
|
|
|
|
} // namespace facebook::react
|