Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for rebind (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/internal/testdir/testdir_test.go

    	}
    
    	return false
    }
    
    // goGcflags returns the -gcflags argument to use with go build / go run.
    // This must match the flags used for building the standard library,
    // or else the commands will rebuild any needed packages (like runtime)
    // over and over.
    func (test) goGcflags() string {
    	return "-gcflags=all=" + os.Getenv("GO_GCFLAGS")
    }
    
    func (test) goGcflagsIsEmpty() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/internal/modget/get.go

    But it will use any known version control system (bzr, fossil, git, hg, svn)
    to download code from private servers, defined as those hosting packages
    matching the GOPRIVATE variable (see 'go help private'). The rationale behind
    allowing only Git and Mercurial is that these two systems have had the most
    attention to issues of being run as clients of untrusted servers. In contrast,
    Bazaar, Fossil, and Subversion have primarily been used in trusted,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    They are deleted if they haven't been used for 7 days.
    
    [[config_cache:stable]]
    == Stable configuration cache
    
    Working towards the stabilization of configuration caching we implemented some strictness behind a feature flag when it was considered too disruptive for early adopters.
    
    You can enable that feature flag as follows:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    ----
    > gradle clean packageFiles2
    include::{snippetsPath}/tasks/incrementalBuild-customTaskClass/tests/inferredTaskDep2.out[]
    ----
    ====
    
    This is because the `from()` method can accept a task object as an argument. Behind the scenes, `from()` uses the `project.files()` method to wrap the argument, which in turn exposes the task’s formal outputs as a file collection. In other words, it’s a special case!
    
    [[sec:task_input_output_validation]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // errors up to an arbitrary timeout.
    //
    // Those errors have been known to occur spuriously on at least the
    // windows-amd64-2012 builder (https://go.dev/issue/50051), and can only occur
    // legitimately if the test leaves behind a temp file that either is still open
    // or the test otherwise lacks permission to delete. In the case of legitimate
    // failures, a failing test may take a bit longer to fail, but once the test is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top