Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Invoke (0.32 sec)

  1. api/go1.16.txt

    pkg syscall (darwin-arm64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
    pkg syscall (darwin-arm64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
    pkg syscall (darwin-arm64), func Revoke(string) error
    pkg syscall (darwin-arm64), func RouteRIB //deprecated
    pkg syscall (darwin-arm64), func RouteRIB(int, int) ([]uint8, error)
    pkg syscall (darwin-arm64), func Seek(int, int64, int) (int64, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    					callABI = s.f.ABI1
    				}
    			}
    			break
    		}
    		closure = s.expr(fn)
    		if k != callDefer && k != callDeferStack {
    			// Deferred nil function needs to panic when the function is invoked,
    			// not the point of defer statement.
    			s.maybeNilCheckClosure(closure, k)
    		}
    	case ir.OCALLINTER:
    		if fn.Op() != ir.ODOTINTER {
    			s.Fatalf("OCALLINTER: n.Left not an ODOTINTER: %v", fn.Op())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

    * kubeadm: Make self-hosting work by using DaemonSets and split it out to a phase that can be invoked via the CLI ([#47435](https://github.com/kubernetes/kubernetes/pull/47435), [@luxas](https://github.com/luxas))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	defer p.mu.Unlock()
    	if p.c.L == nil {
    		p.c.L = &p.mu
    	}
    	defer p.c.Signal()
    	if p.err != nil || p.breakErr != nil {
    		return 0, http2errClosedPipeWrite
    	}
    	// pipe.setBuffer is never invoked, leaving the buffer uninitialized.
    	// We shouldn't try to write to an uninitialized pipe,
    	// but returning an error is better than panicking.
    	if p.b == nil {
    		return 0, http2errUninitializedPipeWrite
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Specifies the CNI provider. Can be either "default" or "multus". When set to "multus", an additional
    	// NetworkAttachmentDefinition resource is deployed to the cluster to allow the istio-cni plugin to be
    	// invoked in a cluster using the Multus CNI plugin.
    	Provider string `protobuf:"bytes,22,opt,name=provider,proto3" json:"provider,omitempty"`
    	// The number of pods that can be unavailable during a rolling update of the CNI DaemonSet (see
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.16.md

            * At Metadata audit level or higher, an annotation with key "mutation.webhook.admission.k8s.io/round_{round idx}_index_{order idx}" gets logged with JSON payload indicating a webhook gets invoked for given request and whether it mutated the object or not.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top