Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for cache4 (0.26 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

     * by the garbage collector. Entries with reclaimed keys or values may be removed from the cache on
     * each cache modification, on occasional cache accesses, or on calls to {@link Cache#cleanUp}; such
     * entries may be counted in {@link Cache#size}, but will never be visible to read or write
     * operations.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    		return false
    	}
    	if cache.DebugTest {
    		fmt.Fprintf(os.Stderr, "testcache: %s: test ID %x => input ID %x => %x\n", a.Package.ImportPath, testID, testInputsID, testAndInputKey(testID, testInputsID))
    	}
    
    	// Parse cached result in preparation for changing run time to "(cached)".
    	// If we can't parse the cached result, don't use it.
    	data, entry, err = cache.GetBytes(cache.Default(), testAndInputKey(testID, testInputsID))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            configurationCache.assertStateStoreFailed()
            outputContains("Configuration cache entry discarded due to serialization error.")
            failure.assertHasFailures(1)
            failure.assertHasFileName("Build file '${buildFile.absolutePath}'")
            failure.assertHasLineNumber(4)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	t.Log("\n\nREPEAT\n\n")
    
    	tg.run("test", "-x", "-v", "-short", "t/...")
    	tg.grepStdout(`ok  \tt/t1\t\(cached\)`, "did not cache t1")
    	tg.grepStdout(`ok  \tt/t2\t\(cached\)`, "did not cache t2")
    	tg.grepStdout(`ok  \tt/t3\t\(cached\)`, "did not cache t3")
    	tg.grepStdout(`ok  \tt/t4\t\(cached\)`, "did not cache t4")
    	tg.grepStderrNot(`[\\/](compile|gccgo) `, "incorrectly ran compiler")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    	}
    
    	s.regs = make([]regState, s.numRegs)
    	nv := f.NumValues()
    	if cap(s.f.Cache.regallocValues) >= nv {
    		s.f.Cache.regallocValues = s.f.Cache.regallocValues[:nv]
    	} else {
    		s.f.Cache.regallocValues = make([]valState, nv)
    	}
    	s.values = s.f.Cache.regallocValues
    	s.orig = s.f.Cache.allocValueSlice(nv)
    	s.copies = make(map[*Value]bool)
    	for _, b := range s.visitOrder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. .teamcity/test-buckets.json

    					"launcher",
    					"plugins-java",
    					"antlr",
    					"base-services",
    					"build-cache",
    					"build-cache-http",
    					"build-cache-local",
    					"build-cache-spi",
    					"build-configuration",
    					"build-events",
    					"build-init",
    					"build-profile",
    					"composite-builds",
    					"configuration-cache",
    					"core",
    					"core-api",
    					"declarative-dsl-core",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    func NewSlice(elem *Type) *Type {
    	if t := elem.cache.slice; t != nil {
    		if t.Elem() != elem {
    			base.Fatalf("elem mismatch")
    		}
    		if elem.HasShape() != t.HasShape() {
    			base.Fatalf("Incorrect HasShape flag for cached slice type")
    		}
    		return t
    	}
    
    	t := newType(TSLICE)
    	t.extra = Slice{Elem: elem}
    	elem.cache.slice = t
    	if elem.HasShape() {
    		t.SetHasShape(true)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    		t.Fatalf("session cache should have evicted key 3")
    	}
    
    	// Update entry 0 in place.
    	cache.Put(keys[0], &cs[3])
    	if s, ok := cache.Get(keys[0]); !ok || s != &cs[3] {
    		t.Fatalf("session cache failed update for key 0")
    	}
    
    	// Calling Put with a nil entry deletes the key.
    	cache.Put(keys[0], nil)
    	if _, ok := cache.Get(keys[0]); ok {
    		t.Fatalf("session cache failed to delete key 0")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	// We used to use it for C objects.
    	// Now we use it for the build cache, to separate dist's cache
    	// from any other cache the user might have, and for the location
    	// to build the bootstrap versions of the standard library.
    	obj := pathf("%s/pkg/obj", goroot)
    	if !isdir(obj) {
    		xmkdir(obj)
    	}
    	xatexit(func() { xremove(obj) })
    
    	// Create build cache directory.
    	objGobuild := pathf("%s/pkg/obj/go-build", goroot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            return importModel;
        }
    
        private static <T> T cache(
                ModelCache cache, String groupId, String artifactId, String version, String tag, Callable<T> supplier) {
            Supplier<T> s = asSupplier(supplier);
            if (cache == null) {
                return s.get();
            } else {
                return cache.computeIfAbsent(groupId, artifactId, version, tag, s);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top