Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 341 for adds (0.04 sec)

  1. internal/config/config.go

    	}
    
    	kvsMap := c[subSys]
    	seen := set.NewStringSet()
    
    	// Add all targets that are configured in the config store.
    	for k := range kvsMap {
    		seen.Add(k)
    	}
    
    	// env:prefix
    	filterMap := map[string]string{}
    	// Add targets that are configured via environment variables.
    	for _, param := range defKVS {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 03 18:23:41 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableListTest.java

            new ImmutableList.Builder<String>().add("a").add("b").add("a").add("c").build();
        assertEquals(asList("a", "b", "a", "c"), list);
      }
    
      @GwtIncompatible("Builder impl")
      public void testBuilderForceCopy() {
        ImmutableList.Builder<Integer> builder = ImmutableList.builder();
        Object[] prevArray = null;
        for (int i = 0; i < 10; i++) {
          builder.add(i);
          assertNotSame(builder.contents, prevArray);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.6.md

        * Adds support for 1.5.x series of Kubernetes
        * Introduces a tactic for keeping templates in sync with upstream eliminating template drift
        * Adds CNI support to the Juju Charms
        * Adds durable storage support to the Juju Charms
        * Introduces an e2e Charm layer for repeatable testing efforts and validation of clusters
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableListTest.java

            new ImmutableList.Builder<String>().add("a").add("b").add("a").add("c").build();
        assertEquals(asList("a", "b", "a", "c"), list);
      }
    
      @GwtIncompatible("Builder impl")
      public void testBuilderForceCopy() {
        ImmutableList.Builder<Integer> builder = ImmutableList.builder();
        Object[] prevArray = null;
        for (int i = 0; i < 10; i++) {
          builder.add(i);
          assertNotSame(builder.contents, prevArray);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/FluentFuture.java

     * own subclass of {@link ListenableFuture}, complete with a method like {@link #from} to adapt an
     * existing {@code ListenableFuture}, implemented atop a {@link ForwardingListenableFuture} that
     * forwards to that future and adds the desired methods.
     *
     * @since 23.0
     */
    @DoNotMock("Use FluentFuture.from(Futures.immediate*Future) or SettableFuture")
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. cmd/api-router.go

    	// S3 browser with signature v4 adds '//' for ListBuckets request, so rather
    	// than failing with UnknownAPIRequest we simply handle it for now.
    	apiRouter.Methods(http.MethodGet).Path(SlashSeparator + SlashSeparator).
    		HandlerFunc(s3APIMiddleware(api.ListBucketsHandler))
    
    	// If none of the routes match add default error handler routes
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 13 15:25:16 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableMap.java

          Entry<K, V> entry = entryOf(key, value);
          // don't inline this: we want to fail atomically if key or value is null
          entries[size++] = entry;
          return this;
        }
    
        /**
         * Adds the given {@code entry} to the map, making it immutable if necessary. If the same key is
         * put more than once, {@link #buildOrThrow} will fail, while {@link #buildKeepingLast} will
         * keep the last value put for that key.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. cmd/iam.go

    			if nerr.Err != nil {
    				logger.GetReqInfo(ctx).SetTags("peerAddress", nerr.Host.String())
    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    }
    
    // AddUsersToGroup - adds users to a group, creating the group if
    // needed. No error if user(s) already are in the group.
    func (sys *IAMSys) AddUsersToGroup(ctx context.Context, group string, members []string) (updatedAt time.Time, err error) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 29 16:01:48 UTC 2024
    - 74.6K bytes
    - Viewed (0)
  9. cmd/generic-handlers.go

    			for k := range w.Header() {
    				w.Header().Del(k)
    			}
    			globalForwarder.ServeHTTP(w, r)
    			return
    		}
    		h.ServeHTTP(w, r)
    	})
    }
    
    // addCustomHeadersMiddleware adds various HTTP(S) response headers.
    // Security Headers enable various security protections behaviors in the client's browser.
    func addCustomHeadersMiddleware(h http.Handler) http.Handler {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:10:04 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableMap.java

          checkEntryNotNull(key, value);
          alternatingKeysAndValues[2 * size] = key;
          alternatingKeysAndValues[2 * size + 1] = value;
          size++;
          return this;
        }
    
        /**
         * Adds the given {@code entry} to the map, making it immutable if necessary. If the same key is
         * put more than once, {@link #buildOrThrow} will fail, while {@link #buildKeepingLast} will
         * keep the last value put for that key.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top