Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 272 for uwcache (0.23 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/PersistentCache.java

     *
     * <p>You can use {@link CacheBuilder#withInitializer(java.util.function.Consumer)} to provide an action to initialize the contents
     * of the cache, for building a read-only cache. An exclusive lock is held by this process while the initializer is running.</p>
     *
     * <p>You can also use {@link #useCache(java.util.function.Supplier)} to perform some action on the cache while holding an exclusive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/install_goroot_targets.txt

    [short] skip
    
    # Packages in std do not have an install target.
    go list -f '{{.Target}}' fmt
    ! stdout .
    go list -export -f '{{.Export}}' fmt
    stdout $GOCACHE
    
    # With GODEBUG=installgoroot=all, fmt has a target.
    # (Though we can't try installing it without modifying goroot).
    env GODEBUG=installgoroot=all
    go list -f '{{.Target}}' fmt
    stdout fmt\.a
    
    # However, the fake packages "builtin" and "unsafe" do not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 22:43:41 UTC 2022
    - 747 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.cache.internal
    
    import org.apache.commons.io.FileUtils
    import org.gradle.cache.CacheBuilder
    import org.gradle.cache.FileLockManager
    import org.gradle.cache.PersistentCache
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/ArtifactCacheLockingAccessCoordinatorStub.groovy

            def result = new TestInMemoryIndexedCache<>(valueSerializer)
            caches.put(cacheName, result)
            return result
        }
    
        @Override
        <T> T useCache(Supplier<? extends T> action) {
            action.get()
        }
    
        @Override
        void useCache(Runnable action) {
            action.run()
        }
    
        @Override
        <T> T withFileLock(Supplier<? extends T> action) {
            action.get()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/internal/bootstrap_test/experiment_toolid_test.go

    		t.Fatal(err)
    	}
    	env := append(os.Environ(), "GOROOT=", "GOROOT_BOOTSTRAP="+realGoroot)
    
    	// Use a clean cache.
    	gocache := t.TempDir()
    	env = append(env, "GOCACHE="+gocache)
    
    	// Build the toolchain without GOEXPERIMENT.
    	var makeScript string
    	switch runtime.GOOS {
    	case "windows":
    		makeScript = "make.bat"
    	case "plan9":
    		makeScript = "make.rc"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 18:47:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_build_trimpath_issue48557.txt

    # should not depend on its working directory, even if the binary is specified as
    # a list of relative source files.
    
    [short] skip  # links and runs binaries
    
    env GOFLAGS=-trimpath
    env GOCACHE=$WORK/gocache
    
    
    # When we build a binary in module mode with -trimpath, the -D flag (for the
    # "local import prefix") should not be passed to it.
    
    cd $WORK/tmp/foo
    go build -x -o a.exe main.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 16:46:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_test_cached.txt

    env GO111MODULE=on
    env GOCACHE=$WORK/gocache
    env GODEBUG=gocachetest=1
    
    # The first run of a test should not be cached.
    # The second run should be.
    go test -run=WriteTmp .
    ! stdout '(cached)'
    go test -run=WriteTmp .
    stdout '(cached)'
    
    # 'go test' without arguments should never be cached.
    go test -run=WriteTmp
    ! stdout '(cached)'
    go test -run=WriteTmp
    ! stdout '(cached)'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. cmd/data-scanner.go

    	err := s.scanFolder(ctx, folder, &root)
    	if err != nil {
    		// No useful information...
    		return cache, err
    	}
    	s.newCache.forceCompact(dataScannerCompactAtChildren)
    	s.newCache.Info.LastUpdate = UTCNow()
    	s.newCache.Info.NextCycle = cache.Info.NextCycle
    	return s.newCache, nil
    }
    
    // sendUpdate() should be called on a regular basis when the newCache contains more recent total than previously.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_commit.txt

    # go get should skip build with no Go files in root
    go get golang.org/x/text@14c0d48
    
    # dropping -d, we should see a build.
    [short] skip
    
    env GOCACHE=$WORK/gocache  # Looking for compile commands, so need a clean cache.
    
    go build -x golang.org/x/text/language
    stderr 'compile|cp|gccgo .*language\.a$'
    
    go list -f '{{.Stale}}' golang.org/x/text/language
    stdout ^false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 20:57:57 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. guava-gwt/src/com/google/common/cache/Cache.gwt.xml

    David P. Baker <******@****.***> 1641482883 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top