Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 94 of 94 for gopark (0.14 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        waiter1.interrupt();
    
        waiter1.join();
        waiter2.awaitWaiting(); // should still be blocked
    
        LockSupport.unpark(waiter2); // spurious wakeup
        waiter2.awaitWaiting(); // should eventually re-park
    
        future.set(null);
        waiter2.join();
      }
    
      public void testRemoveWaiter_polling() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/fetch.go

    	GOPROXY=proxy.example.com
    	GONOPROXY=none
    
    The GOPRIVATE variable is also used to define the "public" and "private"
    patterns for the GOVCS variable; see 'go help vcs'. For that usage,
    GOPRIVATE applies even in GOPATH mode. In that case, it matches import paths
    instead of module paths.
    
    The 'go env -w' command (see 'go help env') can be used to set these variables
    for future go command invocations.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf_test.go

    func gobuildTestdata(t *testing.T, tdir string, pkgDir string, gcflags string) *builtFile {
    	dst := filepath.Join(tdir, "out.exe")
    
    	// Run a build with an updated GOPATH
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build", gcflags, "-o", dst)
    	cmd.Dir = pkgDir
    	if b, err := cmd.CombinedOutput(); err != nil {
    		t.Logf("build: %s\n", b)
    		t.Fatalf("build error: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  4. src/cmd/link/link_test.go

            MOVD zero(SB), AX
            MOVD ·zero(SB), AX
            RET
    `)
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build")
    	cmd.Dir = tmpdir
    	cmd.Env = append(os.Environ(),
    		"GOARCH=amd64", "GOOS=linux", "GOPATH="+filepath.Join(tmpdir, "_gopath"))
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		t.Fatalf("expected build to fail, but it succeeded")
    	}
    	out = regexp.MustCompile("(?m)^#.*\n").ReplaceAll(out, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top