Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for doCache (0.18 sec)

  1. src/cmd/go/go_test.go

    		t.Skip("skipping lengthy test in short mode")
    	}
    
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    
    	// Set GOCACHE to an empty directory so that a previous run of
    	// this test does not affect the staleness of the packages it builds.
    	tg.tempDir("gocache")
    	tg.setenv("GOCACHE", tg.path("gocache"))
    
    	// Copy the runtime packages into a temporary GOROOT
    	// so that we can change files.
    	var dirs []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	// Use a build cache separate from the default user one.
    	// Also one that will be wiped out during startup, so that
    	// make.bash really does start from a clean slate.
    	oldgocache = os.Getenv("GOCACHE")
    	os.Setenv("GOCACHE", pathf("%s/pkg/obj/go-build", goroot))
    
    	// Disable GOEXPERIMENT when building toolchain1 and
    	// go_bootstrap. We don't need any experiments for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. okhttp/api/okhttp.api

    	public final fun isPublic ()Z
    	public final fun maxAgeSeconds ()I
    	public final fun maxStaleSeconds ()I
    	public final fun minFreshSeconds ()I
    	public final fun mustRevalidate ()Z
    	public final fun noCache ()Z
    	public final fun noStore ()Z
    	public final fun noTransform ()Z
    	public final fun onlyIfCached ()Z
    	public static final fun parse (Lokhttp3/Headers;)Lokhttp3/CacheControl;
    	public final fun sMaxAgeSeconds ()I
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    			//
    			// On the builders, we skip this step: we assume that 'dist test' is
    			// already using the result of a clean build, and because of test sharding
    			// and virtualization we usually start with a clean GOCACHE, so we would
    			// end up rebuilding large parts of the standard library that aren't
    			// otherwise relevant to the actual set of packages under test.
    			goInstall(toolenv(), gorootBinGo, toolchain...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    	if h1 == 0x3fc00000 {
    		n |= 1 << 6
    	}
    
    	// rest of exp and mantissa (cd-efgh)
    	n |= int((h >> 16) & 0x3f)
    
    	//print("match %.8lux %.8lux %d\n", l, h, n);
    	return n
    }
    
    func nocache(p *obj.Prog) {
    	p.Optab = 0
    	p.From.Class = 0
    	if p.GetFrom3() != nil {
    		p.GetFrom3().Class = 0
    	}
    	p.To.Class = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top