Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Invokes (0.18 sec)

  1. doc/go_spec.html

    </p>
    
    <p>
    Each time a "defer" statement
    executes, the function value and parameters to the call are
    <a href="#Calls">evaluated as usual</a>
    and saved anew but the actual function is not invoked.
    Instead, deferred functions are invoked immediately before
    the surrounding function returns, in the reverse order
    they were deferred. That is, if the surrounding function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. ChangeLog.md

    - [`KT-37592`](https://youtrack.jetbrains.com/issue/KT-37592) Property invoke of a functional type with receiver is preferred over extension function invoke
    - [`KT-51194`](https://youtrack.jetbrains.com/issue/KT-51194) False negative CONFLICTING_INHERITED_MEMBERS when dependency class contained in two different versions of the same dependency
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - `wait.PollUntilContextTimeout` function, if immediate is true, the condition
      will be invoked before waiting and guarantees that the condition is invoked at
      least once, regardless of whether the context has been cancelled. ([#118686](https://github.com/kubernetes/kubernetes/pull/118686), [@aojea](https://github.com/aojea))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.29.md

    - In the `wait.PollUntilContextTimeout` function, if `immediate` is true, the condition will now be invoked before waiting, guaranteeing that the condition is invoked at least once and then wait a interval before executing again. ([#119762](https://github.com/kubernetes/kubernetes/pull/119762), [@AxeZhan](https://github.com/AxeZhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.25.md

    - Feature gate `ProbeTerminationGracePeriod` is enabled by default. ([#108541](https://github.com/kubernetes/kubernetes/pull/108541), [@kerthcet](https://github.com/kerthcet))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top