Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 726 for Decisions (0.22 sec)

  1. architecture/standards/0001-use-architectural-decision-records.md

    * They are not synced with the code to reflect the eventual solution that is committed
    * Google Docs is not a "code-oriented" tool, like asciidoc can be
    * Review in Google Docs is not as simple as a PR code review in GitHub
    
    ## Decision
    
    The *Build Tool Team* has decided to use Architectural Decision Records (aka ADR) to track decisions we want to follow.
    
    The main logic with ADRs is to describe (architectural) decisions made:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer.go

    )
    
    type authzResult struct {
    	authorized authorizer.Decision
    	reason     string
    	err        error
    }
    
    type cachingAuthorizer struct {
    	authorizer authorizer.Authorizer
    	decisions  map[string]authzResult
    }
    
    func newCachingAuthorizer(in authorizer.Authorizer) authorizer.Authorizer {
    	return &cachingAuthorizer{
    		authorizer: in,
    		decisions:  make(map[string]authzResult),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator.go

    			decision.Action = policyDecisionActionForError(f)
    			decision.Evaluation = EvalError
    			decision.Message = fmt.Sprintf("failed messageExpression: %s", err)
    		} else if evalResult.EvalResult != celtypes.True {
    			decision.Action = ActionDeny
    			if validation.Reason == nil {
    				decision.Reason = metav1.StatusReasonInvalid
    			} else {
    				decision.Reason = *validation.Reason
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    			require.Equal(t, len(validateResult.Decisions), len(tc.policyDecision))
    
    			for i, policyDecision := range tc.policyDecision {
    				if policyDecision.Action != validateResult.Decisions[i].Action {
    					t.Errorf("Expected policy decision kind '%v' but got '%v'", policyDecision.Action, validateResult.Decisions[i].Action)
    				}
    				if !strings.Contains(validateResult.Decisions[i].Message, policyDecision.Message) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. architecture/README.md

    ## Architecture decision records (ADRs)
    
    The Gradle team uses ADRs to record architectural decisions that the team has made.
    
    See [Architecture decisions records](standards) for the list of ADRs.
    Be aware these are very technical descriptions of the decisions, and you might find the documentation below more useful as an introduction to the internals of Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/interface.go

    }
    
    func (v *Variable) GetName() string {
    	return v.Name
    }
    
    // ValidateResult defines the result of a Validator.Validate operation.
    type ValidateResult struct {
    	// Decisions specifies the outcome of the validation as well as the details about the decision.
    	Decisions []PolicyDecision
    	// AuditAnnotations specifies the audit annotations that should be recorded for the validation.
    	AuditAnnotations []PolicyAuditAnnotation
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 17:47:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. architecture/standards/README.md

    ## Architecture Standards
    
    **Experimental!**
    
    We'd like to capture our architectural decisions about the build tool as [Architectural Decision Records (ADRs)](https://adr.github.io/).
    For now we just have this global repository of ADRs.
    If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs.
    
    Our aim is to keep the process lightweight and approachable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 06:30:44 UTC 2024
    - 546 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

          OpBuilder* builder);
    
      // Make the decisions based on the subgraphs.
      // It may be the case we cannot decide the best scenarios for the user,
      // in this case, we just return false.
      bool MakeDecisions(ArrayRef<func::CallOp> output_subgraphs);
    
      // Rewire the subgraphs based on the decisions made.
      // If we cannot make a decisions, we just don't do anything.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		// Versioned params must be nil to pass the test
    		if versionedParams != nil {
    			return validating.ValidateResult{
    				Decisions: []validating.PolicyDecision{
    					{
    						Action: validating.ActionAdmit,
    					},
    				},
    			}
    		}
    		return validating.ValidateResult{
    			Decisions: []validating.PolicyDecision{
    				{
    					Action:  validating.ActionDeny,
    					Message: "Denied",
    				},
    			},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. pkg/kubelet/status/state/state_checkpoint.go

    }
    
    // GetPodResizeStatus returns the last resize decision for a pod
    func (sc *stateCheckpoint) GetPodResizeStatus(podUID string) (v1.PodResizeStatus, bool) {
    	sc.mux.RLock()
    	defer sc.mux.RUnlock()
    	return sc.cache.GetPodResizeStatus(podUID)
    }
    
    // GetResizeStatus returns the set of resize decisions made
    func (sc *stateCheckpoint) GetResizeStatus() PodResizeStatus {
    	sc.mux.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 00:16:44 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top