- 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>
73 lines
2.5 KiB
C++
73 lines
2.5 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<<e67096a87dc73576add98d1d3ea6909b>>
|
|
*/
|
|
|
|
/**
|
|
* 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 <react/featureflags/ReactNativeFeatureFlagsProvider.h>
|
|
#include <array>
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <optional>
|
|
|
|
namespace facebook::react {
|
|
|
|
class ReactNativeFeatureFlagsAccessor {
|
|
public:
|
|
ReactNativeFeatureFlagsAccessor();
|
|
|
|
bool commonTestFlag();
|
|
bool androidEnablePendingFabricTransactions();
|
|
bool batchRenderingUpdatesInEventLoop();
|
|
bool destroyFabricSurfacesInReactInstanceManager();
|
|
bool enableBackgroundExecutor();
|
|
bool useModernRuntimeScheduler();
|
|
bool enableMicrotasks();
|
|
bool enableSpannableBuildingUnification();
|
|
bool enableCustomDrawOrderFabric();
|
|
bool enableFixForClippedSubviewsCrash();
|
|
bool inspectorEnableCxxInspectorPackagerConnection();
|
|
bool inspectorEnableModernCDPRegistry();
|
|
|
|
void override(std::unique_ptr<ReactNativeFeatureFlagsProvider> provider);
|
|
|
|
private:
|
|
void markFlagAsAccessed(int position, const char* flagName);
|
|
void ensureFlagsNotAccessed();
|
|
|
|
std::unique_ptr<ReactNativeFeatureFlagsProvider> currentProvider_;
|
|
bool wasOverridden_;
|
|
|
|
std::array<std::atomic<const char*>, 12> accessedFeatureFlags_;
|
|
|
|
std::atomic<std::optional<bool>> commonTestFlag_;
|
|
std::atomic<std::optional<bool>> androidEnablePendingFabricTransactions_;
|
|
std::atomic<std::optional<bool>> batchRenderingUpdatesInEventLoop_;
|
|
std::atomic<std::optional<bool>> destroyFabricSurfacesInReactInstanceManager_;
|
|
std::atomic<std::optional<bool>> enableBackgroundExecutor_;
|
|
std::atomic<std::optional<bool>> useModernRuntimeScheduler_;
|
|
std::atomic<std::optional<bool>> enableMicrotasks_;
|
|
std::atomic<std::optional<bool>> enableSpannableBuildingUnification_;
|
|
std::atomic<std::optional<bool>> enableCustomDrawOrderFabric_;
|
|
std::atomic<std::optional<bool>> enableFixForClippedSubviewsCrash_;
|
|
std::atomic<std::optional<bool>> inspectorEnableCxxInspectorPackagerConnection_;
|
|
std::atomic<std::optional<bool>> inspectorEnableModernCDPRegistry_;
|
|
};
|
|
|
|
} // namespace facebook::react
|