Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for cacheDir (0.14 sec)

  1. okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt

        listener.cacheConditionalHit(call, response)
        listener.cacheHit(call, response)
        listener.cacheMiss(call)
        listener.satisfactionFailure(call, response)
        logRecorder
          .assertLogMatch(Regex("""cacheConditionalHit: Response\{protocol=h2, code=200, message=, url=$url\}"""))
          .assertLogMatch(Regex("""cacheHit: Response\{protocol=h2, code=200, message=, url=$url\}"""))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	if err != nil {
    		return nil, err
    	}
    
    	// This is only for a test.  We need the watch cache to have a resource version that works for the test.
    	// When new REST storage is created, the storage cacher for the CR starts asynchronously.
    	// REST API operations return like list use the RV of etcd, but the storage cacher's reflector's list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top