Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for admitPV (0.13 sec)

  1. android/guava/src/com/google/common/graph/AbstractBaseGraph.java

    import java.util.Set;
    import javax.annotation.CheckForNull;
    
    /**
     * This class provides a skeletal implementation of {@link BaseGraph}.
     *
     * <p>The methods implemented in this class should not be overridden unless the subclass admits a
     * more efficient implementation.
     *
     * @author James Sexton
     * @param <N> Node parameter type
     */
    @ElementTypesAreNonnullByDefault
    abstract class AbstractBaseGraph<N> implements BaseGraph<N> {
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    	// authorization check using the request URI but it may be necessary to make additional checks, such as in
    	// the create-on-update case
    	Authorizer authorizer.Authorizer
    
    	Admit admission.Interface
    
    	MinRequestTimeout time.Duration
    
    	// The limit on the request body size that would be accepted and decoded in a write request.
    	// 0 means no limit.
    	MaxRequestBodyBytes int64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/plugin.go

    	{Group: admissionregistrationv1.GroupName, Resource: "mutatingadmissionpolicybindings"},
    }
    
    // AdmissionPolicyManager is an abstract admission plugin with all the
    // infrastructure to define Admit or Validate on-top.
    type Plugin[H any] struct {
    	*admission.Handler
    
    	sourceFactory     sourceFactory[H]
    	dispatcherFactory dispatcherFactory[H]
    
    	source     Source[H]
    	dispatcher Dispatcher[H]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/AbstractNetwork.java

     * this class rather than implement {@link Network} directly.
     *
     * <p>The methods implemented in this class should not be overridden unless the subclass admits a
     * more efficient implementation.
     *
     * @author James Sexton
     * @param <N> Node parameter type
     * @param <E> Edge parameter type
     * @since 20.0
     */
    @Beta
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/AbstractNetwork.java

     * this class rather than implement {@link Network} directly.
     *
     * <p>The methods implemented in this class should not be overridden unless the subclass admits a
     * more efficient implementation.
     *
     * @author James Sexton
     * @param <N> Node parameter type
     * @param <E> Edge parameter type
     * @since 20.0
     */
    @Beta
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. plugin/pkg/admission/serviceaccount/admission.go

    		return fmt.Errorf("missing client")
    	}
    	if s.serviceAccountLister == nil {
    		return fmt.Errorf("missing serviceAccountLister")
    	}
    	return nil
    }
    
    // Admit verifies if the pod should be admitted
    func (s *Plugin) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	if shouldIgnore(a) {
    		return nil
    	}
    	if a.GetOperation() != admission.Create {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	err := testContext.Plugin.Dispatch(
    		testContext,
    		// Object is irrelevant/unchecked for this test. Just test that
    		// the evaluator is executed, and returns admit meaning the params
    		// passed was a configmap
    		attributeRecord(nil, fakeParams, admission.Create),
    		&admission.RuntimeObjectInterfaces{},
    	)
    
    	require.ErrorContains(t, err, `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)
  8. pkg/kubelet/kubelet.go

    	attrs.OtherPods = kl.GetActivePods()
    
    	for _, handler := range kl.softAdmitHandlers {
    		if result := handler.Admit(attrs); !result.Admit {
    			return result
    		}
    	}
    
    	return lifecycle.PodAdmitResult{Admit: true}
    }
    
    // syncLoop is the main loop for processing changes. It watches for changes from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. docs/es/docs/async.md

    La mayoría de los framework populares de Python existentes (incluidos Flask y Django) se crearon antes de que existieran las nuevas funciones asíncronas en Python. Por lo tanto, las formas en que pueden implementarse admiten la ejecución paralela y una forma más antigua de ejecución asíncrona que no es tan potente como la actual.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. pkg/kubelet/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"static"},
    	)
    	// ActivePodCount tracks the count of pods the Kubelet considers as active when deciding to admit a new pod
    	ActivePodCount = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           ActivePodCountKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top