Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 350 for invalidating (0.19 sec)

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

            when:
            run "invalid", "--info"
            then:
            executedAndNotSkipped(":invalid")
            outputContains("Invalidating VFS because task ':invalid' failed validation")
        }
    
        @Requires(IntegTestPreconditions.IsEmbeddedExecutor)
        // this test only works in embedded mode because of the use of validation test fixtures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/debug/dwarf/type.go

    	// the cache and return success.
    	delete(typeCache, off)
    	return nil, err
    }
    
    func zeroArray(t *Type) {
    	at := (*t).(*ArrayType)
    	if at.Type.Size() == 0 {
    		return
    	}
    	// Make a copy to avoid invalidating typeCache.
    	tt := *at
    	tt.Count = 0
    	*t = &tt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        outputFile = file('src.a.txt')
    }
    task b(type: TransformerTask, dependsOn: a) {
        inputFile = a.outputFile
        outputFile = file('src.b.txt')
    }
    // Use a separate build script to avoid invalidating task implementations
    apply from: 'changes.gradle'
    '''
            def changesFile = file('changes.gradle').createFile()
    
            TestFile inputFile = file('src.txt')
            TestFile outputFileA = file('src.a.txt')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    		go func() {
    			st := a.secretCache
    			st.RegisterSecretHandler(func(resourceName string) {
    				// The secret handler is called when a secret should be renewed, after invalidating the cache.
    				// The handler does not call GenerateSecret - it is a side-effect of the SDS generate() method, which
    				// is called by sdsServer.OnSecretUpdate, which triggers a push and eventually calls sdsservice.Generate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    		//
    		// 	i = j + len("/vendor/")
    		//
    		// (See https://golang.org/issue/31562 and https://golang.org/issue/37397.)
    		// Unfortunately, we can't fix it without invalidating module checksums.
    		i += len("/vendor/")
    	} else {
    		return false
    	}
    	return strings.Contains(name[i:], "/")
    }
    
    // Unzip extracts the contents of a module zip file to a directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  6. src/crypto/x509/verify.go

    	// the order of the bit flags in the keyUsage due to confusion over
    	// encoding endianness, essentially setting a random keyUsage in
    	// certificates that it issued. Another CA created a self-invalidating
    	// certificate by adding a certificate policy statement stipulating
    	// that the certificate had to be used strictly as specified in the
    	// keyUsage, and a keyUsage containing a flag indicating that the RSA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ----
    
    or in a `gradle.properties` file:
    
    [source,properties]
    ----
    org.gradle.configuration-cache.max-problems=5
    ----
    
    [[config_cache:usage:invalidate]]
    === Invalidating the cache
    
    The configuration cache is automatically invalidated when inputs to the configuration phase change.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    func canMergeSym(x, y Sym) bool {
    	return x == nil || y == nil
    }
    
    // canMergeLoadClobber reports whether the load can be merged into target without
    // invalidating the schedule.
    // It also checks that the other non-load argument x is something we
    // are ok with clobbering.
    func canMergeLoadClobber(target, load, x *Value) bool {
    	// The register containing x is going to get clobbered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Iterators.java

          public boolean hasNext() {
            /*
             * Don't store a new Iterator until we know the user can't remove() the last returned
             * element anymore. Otherwise, when we remove from the old iterator, we may be invalidating
             * the new one. The result is a ConcurrentModificationException or other bad behavior.
             *
             * (If we decide that we really, really hate allocating two Iterators per cycle instead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Iterators.java

          public boolean hasNext() {
            /*
             * Don't store a new Iterator until we know the user can't remove() the last returned
             * element anymore. Otherwise, when we remove from the old iterator, we may be invalidating
             * the new one. The result is a ConcurrentModificationException or other bad behavior.
             *
             * (If we decide that we really, really hate allocating two Iterators per cycle instead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top