Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for Invoke (0.17 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

       * stable. There is usually no reason to retain a reference of type {@code SetView}; typically,
       * you either use it as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or
       * {@link #copyInto} and forget the {@code SetView} itself.
       *
       * @since 2.0
       */
      public abstract static class SetView<E extends @Nullable Object> extends AbstractSet<E> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    		// In all other cases, it ought to be safe to assume that the rules
    		// already exist, so we'll skip this step when doing a partial sync, to
    		// save us from having to invoke /sbin/iptables 20 times on each sync
    		// (which will be very slow on hosts with lots of iptables rules).
    		for _, jump := range append(iptablesJumpChains, iptablesKubeletJumpChains...) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			klog.V(4).InfoS("Completed init container for pod", "containerName", container.Name, "pod", klog.KObj(pod))
    		}
    	}
    
    	// Step 7: For containers in podContainerChanges.ContainersToUpdate[CPU,Memory] list, invoke UpdateContainerResources
    	if isInPlacePodVerticalScalingAllowed(pod) {
    		if len(podContainerChanges.ContainersToUpdate) > 0 || podContainerChanges.UpdatePodResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    // The rootModules slice must be sorted according to gover.ModSort.
    // The caller must not modify the rootModules slice or direct map after passing
    // them to newRequirements.
    //
    // If vendoring is in effect, the caller must invoke initVendor on the returned
    // *Requirements before any other method.
    func newRequirements(pruning modPruning, rootModules []module.Version, direct map[string]bool) *Requirements {
    	mustHaveGoRoot(rootModules)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    // most maxSize chars and the formatted output doesn't contain
    // any control chars. Otherwise, the result is > maxSize.
    func (p *printer) nodeSize(n ast.Node, maxSize int) (size int) {
    	// nodeSize invokes the printer, which may invoke nodeSize
    	// recursively. For deep composite literal nests, this can
    	// lead to an exponential algorithm. Remember previous
    	// results to prune the recursion (was issue 1628).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    // Here is the brief description of some of the arguments to the function below.
    //
    //	apiRouter - http.Handler with the relevant API endPoint (API endPoint under test) registered.
    //	anonReq   - unsigned *http.Request to invoke the handler's response for anonymous requests.
    //	policyFunc    - function to return bucketPolicy statement which would permit the anonymous request to be served.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        Method toStringMethod = Object.class.getMethod("toString");
        ImmutableList<String> list = ImmutableList.of("foo");
        assertEquals(list.toString(), TypeToken.of(List.class).method(toStringMethod).invoke(list));
      }
    
      public <T extends Number & List<String>> void testMethod_returnType_resolvedAgainstTypeBound()
          throws NoSuchMethodException {
        Method getMethod = List.class.getMethod("get", int.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    func (p *parser) paramList(name *Name, typ Expr, close token, requireNames bool) (list []*Field) {
    	if trace {
    		defer p.trace("paramList")()
    	}
    
    	// p.list won't invoke its function argument if we're at the end of the
    	// parameter list. If we have a complete field, handle this case here.
    	if name != nil && typ != nil && p.tok == close {
    		p.next()
    		par := new(Field)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. okhttp/api/okhttp.api

    	public abstract fun withWriteTimeout (ILjava/util/concurrent/TimeUnit;)Lokhttp3/Interceptor$Chain;
    	public abstract fun writeTimeoutMillis ()I
    }
    
    public final class okhttp3/Interceptor$Companion {
    	public final fun invoke (Lkotlin/jvm/functions/Function1;)Lokhttp3/Interceptor;
    }
    
    public final class okhttp3/MediaType {
    	public static final field Companion Lokhttp3/MediaType$Companion;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Sets.java

       * stable. There is usually no reason to retain a reference of type {@code SetView}; typically,
       * you either use it as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or
       * {@link #copyInto} and forget the {@code SetView} itself.
       *
       * @since 2.0
       */
      public abstract static class SetView<E extends @Nullable Object> extends AbstractSet<E> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top