Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 506 for hook1 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/os/readfrom_linux_test.go

    		if _, err := io.Copy(f, f); err != nil {
    			t.Fatalf("failed to read from the file: %v", err)
    		}
    
    		if !hook.called || hook.written != 0 || hook.handled || hook.err != nil {
    			t.Fatalf("poll.CopyFileRange should be called and return the EINVAL error, but got hook.called=%t, hook.err=%v", hook.called, hook.err)
    		}
    
    		// Rewind it.
    		if _, err := f.Seek(0, io.SeekStart); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. android/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)
  8. pkg/security/retry.go

    func CARetryInterceptor() grpc.DialOption {
    	return grpc.WithUnaryInterceptor(retry.UnaryClientInterceptor(CARetryOptions...))
    }
    
    // grpcretry has no hooks to trigger logic on failure (https://github.com/grpc-ecosystem/go-grpc-middleware/issues/375)
    // Instead, we can wrap the backoff hook to log/increment metrics before returning the backoff result.
    func wrapBackoffWithMetrics(bf retry.BackoffFunc) retry.BackoffFunc {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/constant-folding-hook.mlir

    Tres Popp <******@****.***> 1648061556 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 23 18:56:13 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    		switch objectGVK {
    		case p.policyGVK:
    			for _, hook := range p.Source.Hooks() {
    				accessor := srce.newPolicyAccessor(hook.Policy)
    				if accessor.GetName() == name.Name && accessor.GetNamespace() == name.Namespace {
    					return false, nil
    				}
    			}
    
    			return true, nil
    		case p.bindingGVK:
    			for _, hook := range p.Source.Hooks() {
    				for _, binding := range hook.Bindings {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top