Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 94 for rebind (0.19 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    The GODEBUG environment variable can enable printing of debugging
    information about the state of the cache:
    
    GODEBUG=gocacheverify=1 causes the go command to bypass the
    use of any cache entries and instead rebuild everything and check
    that the results match existing cache entries.
    
    GODEBUG=gocachehash=1 causes the go command to print the inputs
    for all of the content hashes it uses to construct cache lookup keys.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    		w.WriteHeader(308)
    	})).ts
    	req, err := NewRequest("POST", ts.URL, strings.NewReader("some body"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	c := ts.Client()
    	req.GetBody = nil // so it can't rewind.
    	res, err := c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	res.Body.Close()
    	if res.StatusCode != 308 {
    		t.Errorf("status = %d; want %d", res.StatusCode, 308)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    					errs = AppendValidation(errs, fmt.Errorf("targetPort has no impact on Sidecars"))
    				}
    				bind := egress.GetBind()
    				captureMode := egress.GetCaptureMode()
    				errs = AppendValidation(errs, validateSidecarEgressPortBindAndCaptureMode(egress.Port, bind, captureMode))
    
    				if egress.Port.Number == 0 {
    					if _, found := udsMap[bind]; found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	c.dispatching = true
    	// We are reusing the slice to avoid memory reallocations in every
    	// dispatchEvent() call. That may prevent Go GC from freeing items
    	// from previous phases that are sitting behind the current length
    	// of the slice, but there is only a limited number of those and the
    	// gain from avoiding memory allocations is much bigger.
    	c.watchersBuffer = c.watchersBuffer[:0]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // The reported import path for a test binary is the import path of
    // the package followed by a ".test" suffix, as in "math/rand.test".
    // When building a test, it is sometimes necessary to rebuild certain
    // dependencies specially for that test (most commonly the tested
    // package itself). The reported import path of a package recompiled
    // for a particular test binary is followed by a space and the name of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    // Because they are from a trap instead of from a saved pair,
    // the initial PC must not be rewound to the previous instruction.
    // (All the saved pairs record a PC that is a return address, so we
    // rewind it into the CALL instruction.)
    // If gp.m.libcall{g,pc,sp} information is available, it uses that information in preference to
    // the pc/sp/lr passed in.
    func tracebacktrap(pc, sp, lr uintptr, gp *g) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Updated description of default values for --healthz-bind-address and --metrics-bind-address parameters ([#123545](https://github.com/kubernetes/kubernetes/pull/123545), [@yangjunmyfm192085](https://github.com/yangjunmyfm192085)) [SIG Network]
    
    ### Other (Cleanup or Flake)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    		return ne.Timeout()
    	}
    	return false
    }
    
    // tests that Conn.Read returns (non-zero, io.EOF) instead of
    // (non-zero, nil) when a Close (alertCloseNotify) is sitting right
    // behind the application data in the buffer.
    func TestConnReadNonzeroAndEOF(t *testing.T) {
    	// This test is racy: it assumes that after a write to a
    	// localhost TCP connection, the peer TCP connection can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. src/os/exec/exec_test.go

    		// stderr pipe is closed.
    		if ee := new(*exec.ExitError); !errors.As(err, ee) {
    			t.Errorf("Wait error = %v; want %T", err, *ee)
    		}
    	})
    
    	// If the process exits with status 0 but leaves a child behind writing
    	// to its output pipes, Wait should only wait for WaitDelay before
    	// closing the pipes and returning.  Wait should return ErrWaitDelay
    	// to indicate that the piped output may be incomplete even though the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	if delta <= 0 {
    		return true
    	}
    	p := getg().m.p.ptr()
    	selfTime := p.gcFractionalMarkTime + (now - p.gcMarkWorkerStartTime)
    	// Add some slack to the utilization goal so that the
    	// fractional worker isn't behind again the instant it exits.
    	return float64(selfTime)/float64(delta) > 1.2*gcController.fractionalUtilizationGoal
    }
    
    var work workType
    
    type workType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top