Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 726 for Decisions (0.2 sec)

  1. 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)
  2. CHANGELOG/CHANGELOG-1.18.md

    ### Serverside Apply - Beta 2
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/authorization/union/union_test.go

    				&mockAuthzHandler{decision: authorizer.DecisionAllow},
    			},
    			decision: authorizer.DecisionDeny,
    		},
    	}
    	for i, c := range cs {
    		t.Run(fmt.Sprintf("case %v", i), func(t *testing.T) {
    			authzHandler := New(c.authorizers...)
    
    			decision, _, _ := authzHandler.Authorize(context.Background(), nil)
    			if decision != c.decision {
    				t.Errorf("Unexpected authorization failure: %v, expected: %v", decision, c.decision)
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 7.7K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/flags_test.go

    			},
    			expectErr: true,
    		},
    		{
    			name: "fail on both revision and revisions flag",
    			settings: &Settings{
    				Revision:      "a",
    				Compatibility: false,
    				Revisions: RevVerMap{
    					"b": "",
    				},
    			},
    			expectErr: true,
    		},
    		{
    			name: "fail when compatibility mode but no revisions",
    			settings: &Settings{
    				Compatibility: true,
    			},
    			expectErr: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authorization/union/union.go

    // decision that is either an Allow decision or a Deny decision. If a
    // subauthorizer returns a NoOpinion, then the union authorizer moves onto the
    // next authorizer or, if the subauthorizer was the last authorizer, returns
    // NoOpinion as the aggregate decision. I.e. union authorizer creates an
    // aggregate decision and supports short-circuit allows and denies from
    // subauthorizers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  9. pkg/registry/authorization/subjectaccessreview/rest_test.go

    )
    
    type fakeAuthorizer struct {
    	attrs authorizer.Attributes
    
    	decision authorizer.Decision
    	reason   string
    	err      error
    }
    
    func (f *fakeAuthorizer) Authorize(ctx context.Context, attrs authorizer.Attributes) (authorizer.Decision, string, error) {
    	f.attrs = attrs
    	return f.decision, f.reason, f.err
    }
    
    func TestCreate(t *testing.T) {
    	testcases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. 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)
Back to top