Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for modcache (0.14 sec)

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

            this.map = map;
        }
    
        @Override
        protected <T extends K> V doGet(T key) {
            return map.get(key);
        }
    
        @Override
        protected <T extends K, N extends V> void doCache(T key, N value) {
            map.put(key, value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. operator/pkg/cache/cache_test.go

    		t.Run(tt.desc, func(t *testing.T) {
    			defer FlushObjectCaches()
    			for key, value := range tt.in {
    				objectCaches[key] = value
    			}
    			if gotCache := GetCache(tt.key); !reflect.DeepEqual(*gotCache, tt.want) {
    				t.Errorf("%s: expected cache %v, got cache %v\n", tt.desc, tt.want, *gotCache)
    			}
    		})
    	}
    }
    
    func TestRemoveObject(t *testing.T) {
    	tests := []struct {
    		desc string
    		in   map[string]*ObjectCache
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 20 18:46:12 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. 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)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

    import org.apache.maven.api.services.ModelCache;
    import org.apache.maven.api.services.Source;
    import org.eclipse.aether.RepositoryCache;
    import org.eclipse.aether.RepositorySystemSession;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * A model builder cache backed by the repository system cache.
     *
     */
    public class DefaultModelCache implements ModelCache {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/internal/cfg/cfg.go

    	CGO_LDFLAGS_DISALLOW
    	CXX
    	FC
    	GCCGO
    	GO111MODULE
    	GO386
    	GOAMD64
    	GOARCH
    	GOARM
    	GOARM64
    	GOBIN
    	GOCACHE
    	GOCACHEPROG
    	GOENV
    	GOEXE
    	GOEXPERIMENT
    	GOFLAGS
    	GOGCCFLAGS
    	GOHOSTARCH
    	GOHOSTOS
    	GOINSECURE
    	GOMIPS
    	GOMIPS64
    	GOMODCACHE
    	GONOPROXY
    	GONOSUMDB
    	GOOS
    	GOPATH
    	GOPPC64
    	GOPRIVATE
    	GOPROXY
    	GORISCV64
    	GOROOT
    	GOSUMDB
    	GOTMPDIR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_commit.txt

    ! stderr 'compile|cp|gccgo .*language\.a$'
    
    # 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)
  7. src/cmd/go/internal/modindex/read.go

    func openIndexModule(modroot string, ismodcache bool) (*Module, error) {
    	return mcache.Do(modroot, func() (*Module, error) {
    		fsys.Trace("openIndexModule", modroot)
    		id, err := moduleHash(modroot, ismodcache)
    		if err != nil {
    			return nil, err
    		}
    		data, _, err := cache.GetMmap(cache.Default(), id)
    		if err != nil {
    			// Couldn't read from modindex. Assume we couldn't read from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. tools/docker-builder/types.go

    	Pull             *bool             `json:"pull,omitempty" hcl:"pull,optional"`
    	NoCache          *bool             `json:"no-cache,omitempty" hcl:"no-cache,optional"`
    }
    
    type Args struct {
    	Push              bool
    	Save              bool
    	Builder           string
    	SupportsEmulation bool
    	NoClobber         bool
    	NoCache           bool
    	Targets           []string
    	Variants          []string
    	Architectures     []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //		Examples are amd64, 386, arm, ppc64.
    //	GOBIN
    //		The directory where 'go install' will install a command.
    //	GOCACHE
    //		The directory where the go command will store cached
    //		information for reuse in future builds.
    //	GOMODCACHE
    //		The directory where the go command will store downloaded modules.
    //	GODEBUG
    //		Enable various debugging facilities. See https://go.dev/doc/godebug
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cover_statements.txt

    # concurrently accessing the cache while this test is running, it can
    # lead to cache lookup failures, which manifest as test failures here.
    # To avoid such flakes, use a separate isolated GOCACHE for this test.
    env GOCACHE=$WORK/cache
    
    # Initial run with simple coverage.
    go test -cover ./pkg1 ./pkg2 ./pkg3 ./pkg4
    [!GOEXPERIMENT:coverageredesign] stdout 'pkg1	\[no test files\]'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top