Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for cacheDir (0.32 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

        def setup() {
            executer.requireOwnGradleUserHomeDir()
            root = new FileTreeBuilder(testDirectory)
            cachesDir = new File(homeDirectory, 'caches')
            def versionCaches = new File(cachesDir, GradleVersion.current().version)
            scriptCachesDir = new File(versionCaches, 'scripts')
            remappedCachesDir = new File(versionCaches, 'scripts-remapped')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

    }
    
    // === Declarative DSL ===
    performanceTest.registerTestProject("largeEmptyMultiProjectDeclarativeDsl", JavaExecProjectGeneratorTask) {
        outputs.dir new File(buildDir, "largeEmptyMultiProjectDeclarativeDsl")
        outputs.cacheIf { true }
        inputs.property('template', "largeEmptyMultiProjectDeclarativeDsl")
        inputs.property('args') { // Arguments are covered by the testProjectName and the outputs. We don't want them to contain the absolute path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

            buildFile << """
                task myTask(type: TaskWithActionProperty) {
                    outputs.cacheIf { true }
                    action = providers.gradleProperty("anonymous").isPresent()
                        ? ${anonymousClassName}.ACTION
                        : ${lambdaClassName}.ACTION
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

                        .withPropertyName("classpath")
                        .withNormalizer(ClasspathNormalizer)
                    outputs.file(outputFile)
                        .withPropertyName("outputFile")
                    outputs.cacheIf { true }
    
                    doLast {
                        outputFile.text = "done"
                    }
                }
            """
            when:
            run "customTask"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       * Response and normal event sequences will not be received.
       *
       * This event will only be received when a Cache is configured for the client.
       */
      open fun cacheHit(
        call: Call,
        response: Response,
      ) {
      }
    
      /**
       * Invoked when a response will be served from the network. The Response will be
       * available from normal event sequences.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            private final static long MINIMAL_CLEANUP_INTERVAL = 30000;
    
            // For stats we don't really care about thread safety
            private int cacheMiss;
            private int cacheHit;
            private int evict;
    
            private CountdownTimer cleanupTimer = Time.startCountdownTimer(MINIMAL_CLEANUP_INTERVAL);
    
            private static class MethodInvocationKey {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

                        from 'web-inf'
                    }
                    webXml = file('web.xml')
                    destinationDirectory = buildDir
                    archiveFileName = 'test.war'
                    outputs.cacheIf { true }
                }
            """
    
            when:
            withBuildCache().run "clean", "war"
    
            then:
            executedAndNotSkipped ':war'
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/httproute.go

    		if vhosts, exists := vHostCache[listenerPort]; exists {
    			virtualHosts = getVirtualHostsForSniffedServicePort(vhosts, routeName)
    			cacheHit = true
    		}
    	}
    	if !cacheHit {
    		virtualHosts, resource, routeCache = BuildSidecarOutboundVirtualHosts(node, req.Push, routeName, listenerPort, efKeys, configgen.Cache)
    		if resource != nil {
    			return resource, true
    		}
    		if listenerPort > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. pkg/wasm/cache_test.go

    	ociURLWithLatestTag := fmt.Sprintf("oci://%s/test/valid/docker:latest", ou.Host)
    	ociURLWithDigest := fmt.Sprintf("oci://%s/test/valid/docker@sha256:%s", ou.Host, dockerImageDigest)
    
    	// Calculate cachehit sum.
    	cacheHitSha := sha256.Sum256([]byte("cachehit"))
    	cacheHitSum := hex.EncodeToString(cacheHitSha[:])
    
    	cases := []struct {
    		name                   string
    		initialCachedModules   map[moduleKey]cacheEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. cmd/xl-storage-disk-id-check.go

    	}
    
    	info, err = p.storage.DiskInfo(ctx, opts)
    	if err != nil {
    		return info, err
    	}
    
    	// check cached diskID against backend
    	// only if its non-empty.
    	cachedID := *p.diskID.Load()
    	if cachedID != "" && cachedID != info.ID {
    		return info, errDiskNotFound
    	}
    	return info, nil
    }
    
    func (p *xlStorageDiskIDCheck) MakeVolBulk(ctx context.Context, volumes ...string) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top