Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 506 for hook1 (0.05 sec)

  1. istioctl/pkg/tag/revision.go

    	}
    	for _, hook := range webhooks {
    		rev := renderWithDefault(hook.GetLabels()[label.IoIstioRev.Name], DefaultRevisionName)
    		tagLabel := hook.GetLabels()[IstioTagLabel]
    		ri, revPresent := revisions[rev]
    		if revPresent {
    			if tagLabel != "" {
    				ri.Webhooks = append(ri.Webhooks, &MutatingWebhookConfigInfo{
    					Name:     hook.Name,
    					Revision: rev,
    					Tag:      tagLabel,
    				})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 13:16:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/net/http/httptrace/trace.go

    	return trace
    }
    
    // WithClientTrace returns a new context based on the provided parent
    // ctx. HTTP client requests made with the returned context will use
    // the provided trace hooks, in addition to any previous hooks
    // registered with ctx. Any hooks defined in the provided trace will
    // be called first.
    func WithClientTrace(ctx context.Context, trace *ClientTrace) context.Context {
    	if trace == nil {
    		panic("nil trace")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. 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)
  4. src/os/writeto_linux_test.go

    		t.Fatalf("wrong source file descriptor: got %d, want %d", hook.srcfd, src.Fd())
    	}
    	sc, ok := dst.(syscall.Conn)
    	if !ok {
    		t.Fatalf("destination is not a syscall.Conn")
    	}
    	rc, err := sc.SyscallConn()
    	if err != nil {
    		t.Fatalf("destination SyscallConn error: %v", err)
    	}
    	if err = rc.Control(func(fd uintptr) {
    		if hook.called && hook.dstfd != int(fd) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/runtime/libfuzzer_amd64.s

    // manipulating the return address so that libfuzzer's integer compare hooks
    // work
    // libFuzzer's compare hooks obtain the caller's address from the compiler
    // builtin __builtin_return_address. Since we invoke the hooks always
    // from the same native function, this builtin would always return the same
    // value. Internally, the libFuzzer hooks call through to the always inlined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/interfaces.go

    	// Dispatch a request to the webhooks. Dispatcher may choose not to
    	// call a hook, either because the rules of the hook does not match, or
    	// the namespaceSelector or the objectSelector of the hook does not
    	// match. A non-nil error means the request is rejected.
    	Dispatch(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces, hooks []webhook.WebhookAccessor) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/README.md

    that the `ingress` and `egress` hooks are special and mostly not available to us;
    kube-proxy lives in the middle section of diagram, with the five main netfilter hooks.
    
    There are three paths through the diagram, called the "input", "forward", and "output"
    paths, depending on which of those hooks it passes through. Packets coming from host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/nettrace/nettrace.go

    // The value should be the same type as lookupIP:
    //
    //	func lookupIP(ctx context.Context, host string) ([]IPAddr, error)
    type LookupIPAltResolverKey struct{}
    
    // Trace contains a set of hooks for tracing events within
    // the net package. Any specific hook may be nil.
    type Trace struct {
    	// DNSStart is called with the hostname of a DNS lookup
    	// before it begins.
    	DNSStart func(name string)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h

      // operations to the dialect. Hooks will only apply to subsequent
      // instantations of the Dialect/MLIRContext.
      static void RegisterAdditionalOperationHook(TypeID uniqueId,
                                                  AdditionalOpFunction fn);
    
      // Re-define publicly the protected addOperations() method from the Dialect
      // class, usually used in a Dialect constructor. This allows hook
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top