Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsReinvoke (0.19 sec)

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

    }
    
    // ReinvocationContext provides access to the admission related state required to implement the re-invocation policy.
    type ReinvocationContext interface {
    	// IsReinvoke returns true if the current admission check is a re-invocation.
    	IsReinvoke() bool
    	// SetIsReinvoke sets the current admission check as a re-invocation.
    	SetIsReinvoke()
    	// ShouldReinvoke returns true if any plugin has requested a re-invocation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		// get called during reinvocation.
    		if reinvokeCtx.IsReinvoke() && !webhookReinvokeCtx.ShouldReinvokeWebhook(invocation.Webhook.GetUID()) {
    			continue
    		}
    
    		versionedAttr, err := v.VersionedAttribute(invocation.Kind)
    		if err != nil {
    			return apierrors.NewInternalError(err)
    		}
    
    		t := time.Now()
    		round := 0
    		if reinvokeCtx.IsReinvoke() {
    			round = 1
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top