Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 778 for hiding (4.64 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    // is evaluated when the param referred by its perNamespaceParamRef is not found.
    // +enum
    type ParameterNotFoundActionType string
    
    const (
    	// Ignore means that an error finding params for a binding is ignored
    	AllowAction ParameterNotFoundActionType = "Allow"
    	// Fail means that an error finding params for a binding is ignored
    	DenyAction ParameterNotFoundActionType = "Deny"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

    Lior Lieberman <******@****.***> 1707338903 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/storage.go

    	binding, ok := obj.(*api.Binding)
    	if !ok {
    		return nil, errors.NewBadRequest(fmt.Sprintf("not a Binding object: %#v", obj))
    	}
    
    	if name != binding.Name {
    		return nil, errors.NewBadRequest("name in URL does not match name in Binding object")
    	}
    
    	// TODO: move me to a binding strategy
    	if errs := validation.ValidatePodBinding(binding); len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/binder.go

    		newPV, err := b.kubeClient.CoreV1().PersistentVolumes().Update(ctx, binding.pv, metav1.UpdateOptions{})
    		if err != nil {
    			logger.V(4).Info("Updating PersistentVolume: binding to claim failed", "pod", klog.KObj(pod), "PV", klog.KObj(binding.pv), "PVC", klog.KObj(binding.pvc), "err", err)
    			return err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/types.go

    	// Reserve is a list of plugins invoked when reserving/unreserving resources
    	// after a node is assigned to run the pod.
    	Reserve PluginSet
    
    	// Permit is a list of plugins that control binding of a Pod. These plugins can prevent or delay binding of a Pod.
    	Permit PluginSet
    
    	// PreBind is a list of plugins that should be invoked before a pod is bound.
    	PreBind PluginSet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                throw new GradleException("Using a Groovy compiler configuration script requires Groovy 2.1+ but found Groovy " + version + "");
            }
            Binding binding = new Binding();
            binding.setVariable("configuration", configuration);
    
            CompilerConfiguration configuratorConfig = new CompilerConfiguration();
            ImportCustomizer customizer = new ImportCustomizer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    	// - when a Bind plugin chooses to skip binding.
    	// - when a PreFilter plugin returns Skip so that coupled Filter plugin/PreFilterExtensions() will be skipped.
    	// - when a PreScore plugin returns Skip so that coupled Score plugin will be skipped.
    	Skip
    	// Pending means that the scheduling process is finished successfully,
    	// but the plugin wants to stop the scheduling cycle/binding cycle here.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    	"parameterNotFoundAction": "`parameterNotFoundAction` controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy.\n\nAllowed values are `Allow` or `Deny`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one.go

    }
    
    // assume signals to the cache that a pod is already in the cache, so that binding can be asynchronous.
    // assume modifies `assumed`.
    func (sched *Scheduler) assume(logger klog.Logger, assumed *v1.Pod, host string) error {
    	// Optimistically assume that the binding will succeed and send it to apiserver
    	// in the background.
    	// If the binding fails, scheduler will release resources allocated to assumed pod
    	// immediately.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // `parameterNotFoundAction` controls the behavior of the binding when the resource
      // exists, and name or selector is valid, but there are no parameters
      // matched by the binding. If the value is set to `Allow`, then no
      // matched parameters will be treated as successful validation by the binding.
      // If set to `Deny`, then no matched parameters will be subject to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
Back to top