Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 246 for hook1 (0.13 sec)

  1. pkg/webhooks/validation/controller/controller_test.go

    					Resources:   []string{"*"},
    				},
    			}},
    			FailurePolicy: ptr.Of(admission.Ignore),
    		}, {
    			Name: "hook1",
    			ClientConfig: admission.WebhookClientConfig{Service: &admission.ServiceReference{
    				Namespace: namespace,
    				Name:      istiod,
    				Path:      &[]string{"/hook1"}[0],
    			}},
    			Rules: []admission.RuleWithOperations{{
    				Operations: []admission.OperationType{admission.Create, admission.Update},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 03:21:04 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. istioctl/pkg/injector/injector-list.go

    	if len(hooks) == 0 {
    		fmt.Fprintf(writer, "No Istio injection hooks present.\n")
    		return nil
    	}
    
    	w := new(tabwriter.Writer).Init(writer, 0, 8, 1, ' ', 0)
    	fmt.Fprintln(w, "NAMESPACES\tINJECTOR-HOOK\tISTIO-REVISION\tSIDECAR-IMAGE")
    	for _, hook := range hooks {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    			// policy itself
    			relevantHooks = append(relevantHooks, PolicyInvocation[P, B, E]{
    				Policy:   hook.Policy,
    				Error:    hook.ConfigurationError,
    				Resource: matchGVR,
    				Kind:     matchGVK,
    			})
    			utilruntime.HandleError(hook.ConfigurationError)
    			continue
    		}
    
    		for _, binding := range hook.Bindings {
    			bindingAccessor := d.newBindingAccessor(binding)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    				},
    			)
    
    			hook, ok := invocation.Webhook.GetValidatingWebhook()
    			if !ok {
    				utilruntime.HandleError(fmt.Errorf("validating webhook dispatch requires v1.ValidatingWebhook, but got %T", hook))
    				return
    			}
    			hookName = hook.Name
    			ignoreClientCallFailures = hook.FailurePolicy != nil && *hook.FailurePolicy == v1.Ignore
    			t := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

    apply plugin: 'eclipse'
    
    ext.hooks = []
    
    eclipse {
    
      jdt {
        file {
          beforeMerged {
            hooks << 'beforeMerged'
          }
          whenMerged {
            hooks << 'whenMerged'
            assert '1.1' != it.targetCompatibility.toString()
            it.targetCompatibility = JavaVersion.toVersion('1.1')
          }
          withProperties {
            hooks << 'withProperties'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    . The `beforeMerged` hook is executed with a domain object representing the existing file
    . The existing content is merged with the configuration inferred from the Gradle build or defined explicitly in the eclipse DSL
    . The `whenMerged` hook is executed with a domain object representing contents of the file to be persisted
    . The `withXml` hook is executed with a raw representation of the XML that will be persisted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		objectInterfaces: o,
    	}
    	for i, hook := range hooks {
    		attrForCheck := attr
    		if v.versionedAttr != nil {
    			attrForCheck = v.versionedAttr
    		}
    
    		invocation, statusErr := a.plugin.ShouldCallHook(ctx, hook, attrForCheck, o, v)
    		if statusErr != nil {
    			return statusErr
    		}
    		if invocation == nil {
    			continue
    		}
    
    		hook, ok := invocation.Webhook.GetMutatingWebhook()
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

     2. The `beforeMerged` hook is executed with a domain object representing the existing file
     3. The existing content is merged with the configuration inferred from the Gradle build or defined explicitly in the eclipse DSL
     4. The `whenMerged` hook is executed with a domain object representing contents of the file to be persisted
     5. The `withXml` hook is executed with a raw representation of the XML that will be persisted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    				continue
    			}
    			if !matches {
    				continue
    			}
    
    			params, err := generic.CollectParams(
    				hook.Policy.Spec.ParamKind,
    				hook.ParamInformer,
    				hook.ParamScope,
    				binding.Spec.ParamRef,
    				a.GetNamespace(),
    			)
    
    			if err != nil {
    				addConfigError(err, definition, binding)
    				continue
    			} else if versionedAttr == nil && len(params) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

        private final List<Thread> hooks = Lists.newArrayList();
    
        @Override
        synchronized void addShutdownHook(Thread hook) {
          hooks.add(hook);
        }
    
        synchronized void shutdown() throws InterruptedException {
          for (Thread hook : hooks) {
            hook.start();
          }
          for (Thread hook : hooks) {
            hook.join();
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.2K bytes
    - Viewed (0)
Back to top