Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 258 for Decisions (0.35 sec)

  1. src/net/http/server.go

    	// request, including the body. A zero or negative value means
    	// there will be no timeout.
    	//
    	// Because ReadTimeout does not let Handlers make per-request
    	// decisions on each request body's acceptable deadline or
    	// upload rate, most users will prefer to use
    	// ReadHeaderTimeout. It is valid to use them both.
    	ReadTimeout time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	// (with R29 = RSP - 8 in Go functions).
    	// This is technically ABI-compatible but not standard.
    	// And it happens to end up mimicking the x86 layout.
    	// Other architectures may make different decisions.
    	if frame.varp > frame.sp && framepointer_enabled {
    		frame.varp -= goarch.PtrSize
    	}
    
    	frame.argp = frame.fp + sys.MinFrameSize
    
    	// Determine frame's 'continuation PC', where it can continue.
    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

    - This PR adds tracing support to the kubelet's read-only endpoint, which currently does not have tracing. It makes use the WithPublicEndpoint option to prevent callers from influencing sampling decisions. ([#121770](https://github.com/kubernetes/kubernetes/pull/121770), [@frzifus](https://github.com/frzifus)) [SIG Node]
    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/cmd/go/alldocs.go

    // a separate software build system may choose to use lower-level
    // invocations such as 'go tool compile' and 'go tool link' to avoid
    // some of the overheads and design decisions of the build tool.
    //
    // See also: go install, go get, go clean.
    //
    // # Remove object files and cached files
    //
    // Usage:
    //
    //	go clean [clean flags] [build flags] [packages]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    			// single iteration that assigns temporary addresses to all
    			// of the text in the same package, using the maximum possible
    			// number of trampolines. This allows for better decisions to
    			// be made regarding reachability and the need for trampolines.
    			if symPkg := ldr.SymPkg(s); symPkg != "" && curPkg != symPkg {
    				curPkg = symPkg
    				vaTmp := va
    				for j := i; j < len(ctxt.Textp); j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer_test.go

    				if decision != invocation.expected.decision {
    					t.Errorf("(call %d of %d) expected decision %v, got %v", i+1, len(tc.calls), invocation.expected.decision, decision)
    				}
    				if reason != invocation.expected.reason {
    					t.Errorf("(call %d of %d) expected reason %q, got %q", i+1, len(tc.calls), invocation.expected.reason, reason)
    				}
    				if err.Error() != invocation.expected.error.Error() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control.go

    	set *apps.StatefulSet,
    	revisions []*apps.ControllerRevision) error {
    	for i := range revisions {
    		adopted, err := ssc.controllerHistory.AdoptControllerRevision(set, controllerKind, revisions[i])
    		if err != nil {
    			return err
    		}
    		revisions[i] = adopted
    	}
    	return nil
    }
    
    // truncateHistory truncates any non-live ControllerRevisions in revisions from set's history. The UpdateRevision and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__policy__v1_openapi.json

    PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction.\n\nAdditional policies may be added in the future. Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this field.\n\nThis field is beta-level. The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default).",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/flags.go

    	}
    
    	if s.Revision != "" {
    		if s.Revisions != nil {
    			return fmt.Errorf("cannot use --istio.test.revision and --istio.test.revisions at the same time," +
    				" --istio.test.revisions will take precedence and --istio.test.revision will be ignored")
    		}
    		// use Revision as the sole revision in RevVerMap
    		s.Revisions = RevVerMap{
    			s.Revision: "",
    		}
    	} else if s.Revisions != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    		User      user.Info
    		Secret    string
    		ConfigMap string
    		Decision  authorizer.Decision
    	}{
    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "node1-only"},
    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "node1-node2-only"},
    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "shared-all"},
    
    		{User: node2, Decision: authorizer.DecisionNoOpinion, Secret: "node1-only"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top