Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 437 for decisions (0.13 sec)

  1. staging/src/k8s.io/api/authorization/v1beta1/types.go

    // or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to
    // drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns.
    // SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.
    type SelfSubjectRulesReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1/types.go

    // or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to
    // drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns.
    // SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.
    type SelfSubjectRulesReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. architecture/ambient/ztunnel.md

    This offered performance benefits that were too large to leave on the table, as well as opportunities to tune to our specific needs.
    
    ## Configuration protocol
    
    Ztunnel, of course, needs to be dynamically configured in order to make decisions on how it should handle traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. .github/CODEOWNERS

    testing/performance/                    @gradle/bt-support
    testing/smoke-test/                     @gradle/bt-support
    testing/soak/                           @gradle/bt-support
    
    # Cross-cutting architecture checks and decisions
    .github/CODEOWNERS                          @gradle/bt-architecture-council
    architecture/                               @gradle/bt-architecture-council
    testing/architecture-test                   @gradle/bt-architecture-council
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. plugin/pkg/admission/imagepolicy/admission.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package imagepolicy contains an admission controller that configures a webhook to which policy
    // decisions are delegated.
    package imagepolicy
    
    import (
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"strings"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/api/imagepolicy/v1alpha1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    						authz,
    					),
    				)
    			}
    
    			for _, validationResult := range validationResults {
    				for i, decision := range validationResult.Decisions {
    					switch decision.Action {
    					case ActionAdmit:
    						if decision.Evaluation == EvalError {
    							celmetrics.Metrics.ObserveAdmissionWithError(ctx, decision.Elapsed, definition.Name, binding.Name, "active")
    						}
    					case ActionDeny:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. docs/features/https.md

    Specific security vs. connectivity decisions are implemented by [ConnectionSpec](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-connection-spec/). OkHttp includes four built-in connection specs:
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1/types.go

    	// pods of a disrupted application might not get a chance to become healthy.
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// Additional 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.
    	//
    	// This field is beta-level. The eviction API uses this field when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder.go

    		Requested: requestedQty.Value(),
    		Capacity:  capacityQty.Value(),
    	}
    }
    
    // PodVolumes holds pod's volumes information used in volume scheduling.
    type PodVolumes struct {
    	// StaticBindings are binding decisions for PVCs which can be bound to
    	// pre-provisioned static PVs.
    	StaticBindings []*BindingInfo
    	// DynamicProvisions are PVCs that require dynamic provisioning
    	DynamicProvisions []*v1.PersistentVolumeClaim
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. docs/fr/docs/features.md

    ### Support d'éditeurs
    
    Tout le framework a été conçu pour être facile et intuitif d'utilisation, toutes les décisions de design ont été testées sur de nombreux éditeurs avant même de commencer le développement final afin d'assurer la meilleure expérience de développement possible.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top