Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for plan (0.04 sec)

  1. guava/src/com/google/common/collect/Iterators.java

       * using {@link Collections#list}.
       *
       * <p><b>Java 9 users:</b> use {@code enumeration.asIterator()} instead, unless it is important to
       * return an {@code UnmodifiableIterator} instead of a plain {@code Iterator}.
       */
      public static <T extends @Nullable Object> UnmodifiableIterator<T> forEnumeration(
          Enumeration<T> enumeration) {
        checkNotNull(enumeration);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
    
            if (slf4jLogger.isDebugEnabled()) {
                slf4jLogger.debug("Message scheme: {}", (MessageUtils.isColorEnabled() ? "color" : "plain"));
                if (MessageUtils.isColorEnabled()) {
                    MessageBuilder buff = MessageUtils.builder();
                    buff.a("Message styles: ");
                    buff.trace("trace").a(' ');
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

       * X> if we support such a thing? It would be weird or misleading for users to be able to pass
       * `new TypeParameter<@Nullable T>() {}` and have it act as a plain `TypeParameter<T>`, but
       * hopefully no one would do that, anyway. See also the comment on TypeParameter itself.
       *
       * TODO(cpovirk): Elaborate on this / merge with other comment?
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrInsecureClientRequest: {
    		Code:           "XMinioInsecureClientRequest",
    		Description:    "Cannot respond to plain-text request from TLS-encrypted server",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrRequestTimedout: {
    		Code:           "RequestTimeout",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  5. src/html/template/exec_test.go

    	}
    	err = tmpl.Execute(&b, "result")
    	if err != nil {
    		t.Error(err)
    	}
    	if b.String() != "result" {
    		t.Errorf("%s got %q, expected %q", text, b.String(), "result")
    	}
    
    	// Even a plain function fails - need to use call.
    	f := func() string { return "result" }
    	b.Reset()
    	err = tmpl.Execute(&b, f)
    	if err == nil {
    		t.Error("expected error with no call, got none")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

       * backing sets do. Contains methods to copy the data into a new set which will then remain
       * 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
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	matchReturnedCookies(t, expectedCookies, tr.req.Cookies())
    
    	client.Head(us) // Note: doesn't hit network
    	matchReturnedCookies(t, expectedCookies, tr.req.Cookies())
    
    	client.Post(us, "text/plain", strings.NewReader("body")) // Note: doesn't hit network
    	matchReturnedCookies(t, expectedCookies, tr.req.Cookies())
    
    	client.PostForm(us, url.Values{}) // Note: doesn't hit network
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// versionsWithUnchangedSchemas tracks schemas of which versions are unchanged when updating a CRD.
    	// Does not apply to creation or deletion.
    	// Some checks use this to avoid rejecting previously accepted versions due to a control plane upgrade/downgrade.
    	versionsWithUnchangedSchemas sets.Set[string]
    	// suppressPerExpressionCost indicates whether CEL per-expression cost limit should be suppressed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	}
    	err = tmpl.Execute(&b, "result")
    	if err != nil {
    		t.Error(err)
    	}
    	if b.String() != "result" {
    		t.Errorf("%s got %q, expected %q", text, b.String(), "result")
    	}
    
    	// Even a plain function fails - need to use call.
    	f := func() string { return "result" }
    	b.Reset()
    	err = tmpl.Execute(&b, f)
    	if err == nil {
    		t.Error("expected error with no call, got none")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    // pointer slots.
    //
    // The type typ must correspond exactly to [src, src+size) and [dst, dst+size).
    // dst, src, and size must be pointer-aligned.
    // The type typ must have a plain bitmap, not a GC program.
    // The only use of this function is in channel sends, and the
    // 64 kB channel element limit takes care of this for us.
    //
    // Must not be preempted because it typically runs right before memmove,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top