- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 736 for cached (0.09 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
List<? extends InterpolationPostProcessor> postProcessors, final ModelProblemCollector problems, ModelBuildingRequest config) { final Map<String, String> cache = new HashMap<>(); final StringSearchInterpolator interpolator = new StringSearchInterpolator(); interpolator.setCacheAnswers(true); for (ValueSource vs : valueSources) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/CheckProject.kt
) text( "reverse.dep.*.additional.gradle.parameters", "", display = ParameterDisplay.NORMAL, allowEmpty = true, description = "The extra gradle parameters you want to pass to all dependencies of this build, e.g. `-PrerunAllTests` or `--no-build-cache`" ) text(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 22 07:02:31 UTC 2024 - 3.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/util/FieldConfigsTest.java
assertFalse(fieldConfigs.getConfig("foo").map(FieldConfigs.Config::isOverwrite).orElse(false)); } public void test_cache() { final Map<String, String> params = Maps.of("foo", "cache"); FieldConfigs fieldConfigs = new FieldConfigs(params); assertTrue(fieldConfigs.getConfig("test").isEmpty()); assertTrue(fieldConfigs.getConfig("foo").map(FieldConfigs.Config::isCache).orElse(false));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 04 06:20:49 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/resources/fess_config.properties
crawler.document.file.default.exclude.index.patterns= crawler.document.file.default.include.search.patterns= crawler.document.file.default.exclude.search.patterns= # cache crawler.document.cache.enabled=true crawler.document.cache.max.size=2621440 crawler.document.cache.supported.mimetypes=text/html
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/EventListenerTest.kt
} private fun enableCache(): Cache? { cache = makeCache() client = client.newBuilder().cache(cache).build() return cache } private fun makeCache(): Cache { val cacheDir = File.createTempFile("cache-", ".dir") cacheDir.delete() return Cache(cacheDir, (1024 * 1024).toLong()) } companion object {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 56.9K bytes - Viewed (2) -
architecture/standards/0002-avoid-using-java-serialization.md
ACCEPTED ## Consequences * The configuration cache serialization infrastructure should be used for all serialization. * Existing usages of Serializer outside of this infrastructure should be migrated to use it. * Existing usages of Java serialization should be migrated to use it. * It is ok for Serializer to be used as a replacement for Java serialization as a migration step.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Feb 29 22:32:18 UTC 2024 - 2.3K bytes - Viewed (0) -
ci/official/containers/linux_arm64/build.sh
fi fi AR_IMAGE_PATH="us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/build-arm64" # Build for both JAX and TF usage. We do these in one place because they share # almost all of the same cache layers export DOCKER_BUILDKIT=1 for target in jax tf; do AR_IMAGE="$AR_IMAGE_PATH:$target-$TAG" docker pull "$AR_IMAGE" || true # Due to some flakiness of resources pulled in the build, allow the docker
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Aug 01 15:44:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/cachedirs/README.txt
Directory for image cache....
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Sep 14 06:00:28 UTC 2013 - 27 bytes - Viewed (0) -
guava/src/com/google/common/cache/LocalCache.java
@CheckForNull transient Cache<K, V> delegate; ManualSerializationProxy(LocalCache<K, V> cache) { this( cache.keyStrength, cache.valueStrength, cache.keyEquivalence, cache.valueEquivalence, cache.expireAfterWriteNanos, cache.expireAfterAccessNanos, cache.maxWeight, cache.weigher,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 149.2K bytes - Viewed (0) -
cni/pkg/nodeagent/net_test.go
assert.Equal(t, ztunnelServer.deletedPods.Load(), 1) // with delete iptables is not called, as there is no need to delete the iptables rules // from a pod that's gone from the cluster. assert.Equal(t, nlDeps.DelInpodMarkIPRuleCnt.Load(), 0) assert.Equal(t, nlDeps.DelLoopbackRoutesCnt.Load(), 0) // make sure the uid was taken from cache and netns closed netns := fixture.podNsMap.Take(string(pod.UID)) assert.Equal(t, nil, netns)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jul 25 16:13:38 UTC 2024 - 10.7K bytes - Viewed (0)