Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for decisions (0.15 sec)

  1. pkg/kubelet/server/server_test.go

    		},
    		attributesFunc: func(u user.Info, req *http.Request) authorizer.Attributes {
    			return &authorizer.AttributesRecord{User: u}
    		},
    		authorizeFunc: func(a authorizer.Attributes) (decision authorizer.Decision, reason string, err error) {
    			return authorizer.DecisionAllow, "", nil
    		},
    	}
    	server := NewServer(
    		fw.fakeKubelet,
    		stats.NewResourceAnalyzer(fw.fakeKubelet, time.Minute, &record.FakeRecorder{}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    }
    
    func newApfServerWithSingleRequest(t *testing.T, decision mockDecision) *httptest.Server {
    	onExecuteFunc := func() {
    		if decision == decisionCancelWait {
    			t.Errorf("execute should not be invoked")
    		}
    		// atomicReadOnlyExecuting can be either 0 or 1 as we test one request at a time.
    		if decision != decisionSkipFilter && atomicReadOnlyExecuting != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. src/math/big/float_test.go

    		for i := 0; i < n; i++ {
    			x.Add(&x, &one)
    		}
    		if x.Cmp(new(Float).SetInt64(n)) != 0 {
    			t.Errorf("prec = %d: got %s; want %d", prec, &x, n)
    		}
    	}
    }
    
    // Selected precisions with which to run various tests.
    var precList = [...]uint{1, 2, 5, 8, 10, 16, 23, 24, 32, 50, 53, 64, 100, 128, 500, 511, 512, 513, 1000, 10000}
    
    // Selected bits with which to run various tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    		// Determine if the next linebreak, if any, needs to use formfeed:
    		// in general, use the entire node size to make the decision; for
    		// key:value expressions, use the key size.
    		// TODO(gri) for a better result, should probably incorporate both
    		//           the key and the node size into the decision process
    		useFF := true
    
    		// Determine element size: All bets are off if we don't have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/runtime/map.go

    						// presence of iterators, as our evacuation decision must
    						// match whatever decision the iterator made.
    						// Fortunately, we have the freedom to send these keys either
    						// way. Also, tophash is meaningless for these kinds of keys.
    						// We let the low bit of tophash drive the evacuation decision.
    						// We recompute a new random tophash for the next level so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    			err = dsc.rollingUpdate(ctx, ds, nodeList, hash)
    		}
    		if err != nil {
    			return err
    		}
    	}
    
    	err = dsc.cleanupHistory(ctx, ds, old)
    	if err != nil {
    		return fmt.Errorf("failed to clean up revisions of DaemonSet: %w", err)
    	}
    
    	return nil
    }
    
    // manage manages the scheduling and running of Pods of ds on nodes.
    // After figuring out which nodes should run a Pod of ds but not yet running one and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types.go

    	UpdateStrategy StatefulSetUpdateStrategy `json:"updateStrategy,omitempty" protobuf:"bytes,7,opt,name=updateStrategy"`
    
    	// revisionHistoryLimit is the maximum number of revisions that will
    	// be maintained in the StatefulSet's revision history. The revision history
    	// consists of all revisions not represented by a currently applied
    	// StatefulSetSpec version. The default value is 10.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    	UpdateStrategy StatefulSetUpdateStrategy `json:"updateStrategy,omitempty" protobuf:"bytes,7,opt,name=updateStrategy"`
    
    	// revisionHistoryLimit is the maximum number of revisions that will
    	// be maintained in the StatefulSet's revision history. The revision history
    	// consists of all revisions not represented by a currently applied
    	// StatefulSetSpec version. The default value is 10.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    			// this the start of a type parameter list, with some caveats:
    			// a single name followed by "]" tilts the decision towards an
    			// array declaration; a type parameter type that could also be
    			// an ordinary expression but which is followed by a comma tilts
    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == _Comma); pname != nil && (ptype != nil || p.tok != _Rbrack) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    			// this the start of a type parameter list, with some caveats:
    			// a single name followed by "]" tilts the decision towards an
    			// array declaration; a type parameter type that could also be
    			// an ordinary expression but which is followed by a comma tilts
    			// the decision towards a type parameter list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top