Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for maxargs (0.67 sec)

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

       */
      public static <T extends @Nullable Object> Iterator<T> concat(
          Iterator<? extends Iterator<? extends T>> inputs) {
        return new ConcatenatedIterator<>(inputs);
      }
    
      /** Concats a varargs array of iterators without making a defensive copy of the array. */
      static <T extends @Nullable Object> Iterator<T> concatNoDefensiveCopy(
          Iterator<? extends T>... inputs) {
    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. src/net/http/client_test.go

    				"Cookie3": {"OldValue3a", "OldValue3b"},
    				"Cookie4": {"OldValue4"},
    				"Cycle":   {"0"},
    			}
    			SetCookie(w, &Cookie{Name: "Cycle", Value: "1", Path: "/"})
    			SetCookie(w, &Cookie{Name: "Cookie2", Path: "/", MaxAge: -1}) // Delete cookie from Header
    			Redirect(w, r, "/", StatusFound)
    		case "1":
    			want = map[string][]string{
    				"Cookie1": {"OldValue1a", "OldValue1b"},
    				"Cookie3": {"OldValue3a", "OldValue3b"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top