Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for Cacheable (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

                        new File(outputDir, "output").text = "OK"
                    }
                }
    
                task cacheable(type: CustomTask)
            """
            succeeds("cacheable")
    
            then:
            def cacheKey = cacheOperations.getCacheKeyForTask(":cacheable")
            localCache.hasCacheEntry(cacheKey)
    
            when:
            executer.withStacktraceEnabled()
            cleanBuildDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/DefaultTypeValidationContext.java

        private final ImmutableList.Builder<Problem> problems = ImmutableList.builder();
    
        public static DefaultTypeValidationContext withRootType(Class<?> rootType, boolean cacheable) {
            return new DefaultTypeValidationContext(rootType, cacheable);
        }
    
        public static DefaultTypeValidationContext withoutRootType(boolean reportCacheabilityProblems) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/xds_cache.go

    	// Whenever these configs change, we should invalidate this cache entry.
    	DependentConfigs() []ConfigHash
    	// Cacheable indicates whether this entry is valid for cache. For example
    	// for EDS to be cacheable, the Endpoint should have corresponding service.
    	Cacheable() bool
    }
    
    const (
    	CDSType = "cds"
    	EDSType = "eds"
    	RDSType = "rds"
    	SDSType = "sds"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 07:02:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/settings.gradle

    rootProject.name = 'cacheable-bundle'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    == Instrumented test execution (i.e., Espresso tests)
    
    Android instrumented tests (`DeviceProviderInstrumentTestTask`), often referred to as “Espresso” tests, are also not cacheable.
    The Google Android team is also working to make such tests cacheable.
    Please see https://issuetracker.google.com/issues/115873051[this issue].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/IsolateTransformParametersCodec.kt

            val parameterObject: TransformParameters? = read()?.uncheckedCast()
            val implementationClass = readClass()
            val cacheable = readBoolean()
    
            return DefaultTransform.IsolateTransformParameters(
                parameterObject,
                implementationClass,
                cacheable,
                RootScriptDomainObjectContext.INSTANCE,
                parameterScheme.inspectionScheme.propertyWalker,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultWorkValidationContext.java

        @Override
        public InternalProblems getProblemsService() {
            return ProblemsProgressEventEmitterHolder.get();
        }
    
        @Override
        public TypeValidationContext forType(Class<?> type, boolean cacheable) {
            types.add(type);
            Supplier<Optional<PluginId>> pluginId = () -> typeOriginInspector.findPluginDefining(type);
            return new ProblemRecordingTypeValidationContext(type, pluginId) {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/kotlin/settings.gradle.kts

    rootProject.name = "cacheable-bundle-task"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43 bytes
    - Viewed (0)
  9. .idea/dictionaries/4u7.xml

    <component name="ProjectDictionaryState">
      <dictionary name="4u7">
        <words>
          <w>aarch</w>
          <w>bintray</w>
          <w>cacheability</w>
          <w>cacheable</w>
          <w>cidr</w>
          <w>fastutil</w>
          <w>foldable</w>
          <w>instrumentator</w>
          <w>jdks</w>
          <w>jsshell</w>
          <w>proguarded</w>
          <w>protobuf</w>
          <w>redirector</w>
          <w>remapper</w>
          <w>sonatype</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 16 12:19:01 UTC 2023
    - 498 bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/cpp/tasks/CppPreCompiledHeaderCompile.java

    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Compiles C++ header source files into object files.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class CppPreCompiledHeaderCompile extends AbstractNativePCHCompileTask {
        @Override
        protected NativeCompileSpec createCompileSpec() {
            return new DefaultCppPCHCompileSpec();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top