Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 726 for Decisions (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/interfaces.go

    type Interface interface {
    	// Handles returns true if this admission controller can handle the given operation
    	// where operation can be one of CREATE, UPDATE, DELETE, or CONNECT
    	Handles(operation Operation) bool
    }
    
    type MutationInterface interface {
    	Interface
    
    	// Admit makes an admission decision based on the request attributes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/auto_clustering_test_helper.h

    namespace tensorflow {
    // Helper to write integration tests and benchmarks for the auto-clustering pass
    // pipeline.  These tests run auto-clustering on a graphdef and compare a
    // summary of the auto-clustering decisions with a "golden" summary.
    //
    // To create a new test from an TF workload first run the workload with the
    // following environment variables set:
    //
    //   TF_DUMP_GRAPH_PREFIX=<some temporary directory>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/extender.go

    */
    
    package framework
    
    import (
    	v1 "k8s.io/api/core/v1"
    	extenderv1 "k8s.io/kube-scheduler/extender/v1"
    )
    
    // Extender is an interface for external processes to influence scheduling
    // decisions made by Kubernetes. This is typically needed for resources not directly
    // managed by Kubernetes.
    type Extender interface {
    	// Name returns a unique name that identifies the extender.
    	Name() string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. plugin/pkg/admission/imagepolicy/config.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 (
    	"fmt"
    	"time"
    
    	"k8s.io/klog/v2"
    )
    
    const (
    	defaultRetryBackoff = time.Duration(500) * time.Millisecond
    	minRetryBackoff     = time.Duration(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 04:07:36 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. src/runtime/rand.go

    	return uint32((uint64(uint32(rand())) * uint64(n)) >> 32)
    }
    
    // cheaprand is a non-cryptographic-quality 32-bit random generator
    // suitable for calling at very high frequency (such as during scheduling decisions)
    // and at sensitive moments in the runtime (such as during stack unwinding).
    // it is "cheap" in the sense of both expense and quality.
    //
    // cheaprand must not be exported to other packages:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/runtime/atomic_pointer.go

    	"unsafe"
    )
    
    // These functions cannot have go:noescape annotations,
    // because while ptr does not escape, new does.
    // If new is marked as not escaping, the compiler will make incorrect
    // escape analysis decisions about the pointer value being stored.
    
    // atomicwb performs a write barrier before an atomic pointer write.
    // The caller should guard the call with "if writeBarrier.enabled".
    //
    // atomicwb should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pkg/apis/authorization/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
    	metav1.ObjectMeta
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  8. plugin/pkg/admission/eventratelimit/admission.go

    		Handler:        admission.NewHandler(admission.Create, admission.Update),
    		limitEnforcers: limitEnforcers,
    	}
    
    	return eventRateLimitAdmission, nil
    }
    
    // Validate makes admission decisions while enforcing event rate limits
    func (a *Plugin) Validate(ctx context.Context, attr admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	// ignore all operations that do not correspond to an Event kind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 14 15:26:57 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/inline/inlheur/function_properties.go

    // basis, meaning that the code that computes them doesn't verify that
    // the properties are guaranteed to be true in 100% of cases. For this
    // reason, properties should only be used to drive always-safe
    // optimization decisions (e.g. "should I inline this call", or
    // "should I unroll this loop") as opposed to potentially unsafe IR
    // alterations that could change program semantics (e.g. "can I delete
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission.go

    	if a.quotaConfiguration == nil {
    		return fmt.Errorf("missing quotaConfiguration")
    	}
    	if a.evaluator == nil {
    		return fmt.Errorf("missing evaluator")
    	}
    	return nil
    }
    
    // Validate makes admission decisions while enforcing quota
    func (a *QuotaAdmission) Validate(ctx context.Context, attr admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	// ignore all operations that correspond to sub-resource actions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.8K bytes
    - Viewed (0)
Back to top