Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 25 of 329) sorted by relevance

12345678910>>...14

/expo/.github/actions/expo-caches/
H A Daction.yml50 value: steps.workspace-modules-cache.outputs.cache-hit
53 value: steps.tools-modules-cache.outputs.cache-hit
56 value: steps.docs-modules-cache.outputs.cache-hit
59 value: steps.ios-pods-cache.outputs.cache-hit
62 value: steps.bare-expo-pods-cache.outputs.cache-hit
65 value: steps.native-tests-pods-cache.outputs.cache-hit
68 value: steps.git-lfs-cache.outputs.cache-hit
71 value: steps.cache-hermes-engine-aar.outputs.cache-hit
78 uses: actions/cache@v3
119 id: ios-pods-cache
[all …]
/expo/docs/pages/troubleshooting/
H A Dclear-cache-macos-linux.mdx16 yarn cache clean
20 rm -rf $TMPDIR/metro-cache
28 npm cache clean --force
32 rm -rf $TMPDIR/metro-cache
41 yarn cache clean
45 rm -rf $TMPDIR/metro-cache
46 yarn start -- --reset-cache
53 npm cache clean --force
57 rm -rf $TMPDIR/metro-cache
58 npm start -- --reset-cache
[all …]
H A Dclear-cache-windows.mdx14 yarn cache clean
18 del %localappdata%\Temp\metro-cache
26 npm cache clean --force
30 del %localappdata%\Temp\metro-cache
39 yarn cache clean
43 del %localappdata%\Temp\metro-cache
44 yarn start -- --reset-cache
51 npm cache clean --force
55 del %localappdata%\Temp\metro-cache
56 npm start -- --reset-cache
[all …]
/expo/packages/@expo/metro-runtime/src/async-require/
H A DbuildAsyncRequire.ts18 const cache = new Map<string, Promise<void>>(); constant
21 if (cache.has(path)) {
22 return cache.get(path)!;
26 cache.delete(path);
30 cache.set(path, promise);
/expo/packages/expo-dev-menu/android/src/test/java/expo/modules/devmenu/
H A DKeyValueCachedPropertyProxyTest.kt15 val cache = KeyValueCachedPropertyProxy( in <lambda>() constant
23 val result = cache[1] in <lambda>()
24 val result2 = cache[1] in <lambda>()
34 val cache = KeyValueCachedPropertyProxy( in <lambda>() constant
41 cache[1] in <lambda>()
42 cache[2] in <lambda>()
43 cache[3] in <lambda>()
/expo/packages/@expo/metro-runtime/build/async-require/
H A DbuildAsyncRequire.js13 const cache = new Map();
15 if (cache.has(path)) {
16 return cache.get(path);
19 cache.delete(path);
22 cache.set(path, promise);
/expo/docs/pages/build-reference/
H A Dcaching.mdx12cache` field on build profiles in [eas.json](/build/eas-json) can be used to configure caching for…
16cache server that can speed up downloading JavaScript dependencies for your build jobs. Projects t…
18 To disable using our npm cache server for your builds set the `EAS_BUILD_DISABLE_NPM_CACHE` env var…
39 EAS Build runs a Maven cache server that can speed up downloading Android dependencies for your bui…
48 To disable using our Maven cache server for your builds set the `EAS_BUILD_DISABLE_MAVEN_CACHE` env…
69 …aPods artifacts from a cache server. This improves the consistency of `pod install` times and gene…
71 To use our CocoaPods cache server for your builds set the `EAS_BUILD_DISABLE_COCOAPODS_CACHE` env v…
91 It can be useful to cache your **Podfile.lock** to have deterministic builds, but the tradeoff in t…
92 If you cache this file, you may occasionally end up with build errors that require clearing the cac…
93 To cache **Podfile.lock**, add **./ios/Podfile.lock** to the `cache.paths` list in your build profi…
[all …]
H A Dnpm-cache-with-yarn.mdx2 title: Use npm cache with Yarn Classic
4 description: Learn how to use npm cache by overriding the registry in Yarn Classic.
7 By default, the EAS npm cache won't work with Yarn 1 (Classic), because **yarn.lock** files contain…
9 If you want to take advantage of the npm cache, you can add the `eas-build-pre-install` npm hook in…
/expo/packages/@expo/cli/src/utils/
H A Dfn.ts3 const cache: { [key: string]: any } = {}; constant
6 if (cache[key]) {
7 return cache[key];
10 cache[key] = result;
/expo/packages/expo-modules-core/android/src/main/cpp/types/
H A DJNIToJSIConverter.cpp26 auto cache = JavaReferencesCache::instance(); in convert() local
27 if (env->IsInstanceOf(unpackedValue, cache->getJClass("java/lang/Double").clazz)) { in convert()
30 if (env->IsInstanceOf(unpackedValue, cache->getJClass("java/lang/Integer").clazz)) { in convert()
33 if (env->IsInstanceOf(unpackedValue, cache->getJClass("java/lang/Long").clazz)) { in convert()
36 if (env->IsInstanceOf(unpackedValue, cache->getJClass("java/lang/String").clazz)) { in convert()
42 if (env->IsInstanceOf(unpackedValue, cache->getJClass("java/lang/Boolean").clazz)) { in convert()
45 if (env->IsInstanceOf(unpackedValue, cache->getJClass("java/lang/Float").clazz)) { in convert()
50 cache->getJClass("com/facebook/react/bridge/WritableNativeArray").clazz in convert()
59 cache->getJClass("com/facebook/react/bridge/WritableNativeMap").clazz in convert()
/expo/packages/@expo/cli/src/api/rest/cache/
H A DwrapFetchWithCache.ts117 cache: req.cache,
151 cache: FileSystemCache
154 cache: FileSystemCache,
159 let cachedValue = await cache.get(cacheKey);
161 const ejectSelfFromCache = () => cache.remove(cacheKey);
174 cachedValue = await cache.get(cacheKey);
187 const newlyCachedData = await cache.set(
204 return (url: RequestInfo, init?: RequestInit | undefined) => getResponse(cache, url, init);
/expo/packages/@expo/config/build/
H A DgetUserState.js38cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj…
/expo/packages/@expo/metro-runtime/build/error-overlay/Data/
H A DLogBoxSymbolication.js15 const cache = new Map(); constant
44 cache.delete(stack);
48 let promise = cache.get(stack);
51 cache.set(stack, promise);
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/jsi/
H A DRuntimeAwareCache.h66 for (auto &cache : _secondaryRuntimeCaches) { in ~RuntimeAwareCache()
68 *static_cast<jsi::Runtime *>(cache.first), this); in ~RuntimeAwareCache()
89 T cache; in get() local
90 _secondaryRuntimeCaches.emplace(&rt, std::move(cache)); in get()
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/jsi/
H A DRuntimeAwareCache.h66 for (auto &cache : _secondaryRuntimeCaches) { in ~RuntimeAwareCache()
68 *static_cast<jsi::Runtime *>(cache.first), this); in ~RuntimeAwareCache()
89 T cache; in get() local
90 _secondaryRuntimeCaches.emplace(&rt, std::move(cache)); in get()
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/jsi/
H A DRuntimeAwareCache.h66 for (auto &cache : _secondaryRuntimeCaches) { in ~RuntimeAwareCache()
68 *static_cast<jsi::Runtime *>(cache.first), this); in ~RuntimeAwareCache()
89 T cache; in get() local
90 _secondaryRuntimeCaches.emplace(&rt, std::move(cache)); in get()
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/jsi/
H A DRuntimeAwareCache.h66 for (auto &cache : _secondaryRuntimeCaches) { in ~RuntimeAwareCache()
68 *static_cast<jsi::Runtime *>(cache.first), this); in ~RuntimeAwareCache()
89 T cache; in get() local
90 _secondaryRuntimeCaches.emplace(&rt, std::move(cache)); in get()
/expo/packages/@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/
H A DwithIosSplashScreenStoryboard.js45cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj…
/expo/packages/@expo/config-plugins/build/android/
H A DEasBuild.js38cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj…
H A DPaths.js64cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj…
/expo/packages/expo-router/build/head/
H A Durl.js12 const cache = {};
15 if (cache[key]) {
16 return cache[key];
19 cache[key] = result;
/expo/packages/@expo/prebuild-config/build/plugins/icons/
H A DwithIosIcons.js46cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj…
/expo/packages/@expo/metro-runtime/src/error-overlay/Data/
H A DLogBoxSymbolication.tsx19 const cache: Map<Stack, Promise<SymbolicatedStackTrace>> = new Map();
53 cache.delete(stack);
57 let promise = cache.get(stack);
60 cache.set(stack, promise);
/expo/packages/@expo/config-plugins/build/utils/
H A Dplugin-resolver.js57cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj…
/expo/packages/@expo/config-plugins/build/ios/
H A DUpdates.js46cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj…

12345678910>>...14