Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for circuit (0.55 sec)

  1. staging/src/k8s.io/api/rbac/v1/types.go

    */
    
    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // Authorization is calculated against
    // 1. evaluation of ClusterRoleBindings - short circuit on match
    // 2. evaluation of RoleBindings in the namespace requested - short circuit on match
    // 3. deny by default
    
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    
    	GroupKind          = "Group"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    */
    
    package v1alpha1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // Authorization is calculated against
    // 1. evaluation of ClusterRoleBindings - short circuit on match
    // 2. evaluation of RoleBindings in the namespace requested - short circuit on match
    // 3. deny by default
    
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    
    	GroupKind          = "Group"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/types.go

    */
    
    package v1beta1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // Authorization is calculated against
    // 1. evaluation of ClusterRoleBindings - short circuit on match
    // 2. evaluation of RoleBindings in the namespace requested - short circuit on match
    // 3. deny by default
    
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    
    	GroupKind          = "Group"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. hack/make-rules/update.sh

    ALL=${FORCE_ALL:-false}
    
    trap 'exit 1' SIGINT
    
    if ${SILENT} ; then
    	echo "Running in silent mode, run with SILENT=false if you want to see script logs."
    fi
    
    if ! ${ALL} ; then
    	echo "Running in short-circuit mode; run with FORCE_ALL=true to force all scripts to run."
    fi
    
    BASH_TARGETS=(
    	update-go-workspace
    	update-codegen
    	update-generated-api-compatibility-data
    	update-generated-docs
    	update-openapi-spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/DefaultFailureFactory.java

            }
    
            @SuppressWarnings("Since15")
            private List<Failure> convertSuppressed(Throwable parent) {
                // Short-circuit if suppressed exceptions are not supported by the current JVM
                if (!JavaVersion.current().isJava7Compatible()) {
                    return ImmutableList.of();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pkg/security/apparmor/helpers.go

    		if c.SecurityContext != nil && c.SecurityContext.AppArmorProfile != nil &&
    			c.SecurityContext.AppArmorProfile.Type != v1.AppArmorProfileTypeUnconfined {
    			return false // is in use; short-circuit
    		}
    		return true
    	})
    	if inUse {
    		return true
    	}
    
    	for key, value := range pod.Annotations {
    		if strings.HasPrefix(key, v1.DeprecatedAppArmorBetaContainerAnnotationKeyPrefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. pkg/kube/krt/helpers.go

    	return n.Namespace
    }
    
    // GetApplyConfigKey returns the key for the ApplyConfig.
    // If there is none, this will return nil.
    func GetApplyConfigKey[O any](a O) *Key[O] {
    	// Reflection is expensive; short circuit here
    	if !strings.HasSuffix(ptr.TypeName[O](), "ApplyConfiguration") {
    		return nil
    	}
    	val := reflect.ValueOf(a)
    
    	if val.Kind() == reflect.Ptr {
    		val = val.Elem()
    	}
    	if val.Kind() != reflect.Struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/topology_hints.go

    		if aligned := m.deviceHasTopologyAlignment(resource); !aligned {
    			klog.InfoS("Resource does not have a topology preference", "resource", resource)
    			deviceHints[resource] = nil
    			continue
    		}
    
    		// Short circuit to regenerate the same hints if there are already
    		// devices allocated to the Container. This might happen after a
    		// kubelet restart, for example.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultInMemoryCacheDecoratorFactory.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.concurrent.atomic.AtomicReference;
    
    /**
     * A {@link CacheDecorator} that wraps each cache with an in-memory cache that is used to short-circuit reads from the backing cache.
     * The in-memory cache is invalidated when the backing cache is changed by another process.
     *
     * Also decorates each cache so that updates to the backing cache are made asynchronously.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_traffic_policy.go

    	}
    }
    
    // getDefaultCircuitBreakerThresholds returns a copy of the default circuit breaker thresholds for the given traffic direction.
    func getDefaultCircuitBreakerThresholds() *cluster.CircuitBreakers_Thresholds {
    	return &cluster.CircuitBreakers_Thresholds{
    		// DefaultMaxRetries specifies the default for the Envoy circuit breaker parameter max_retries. This
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top