Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 254 for 110 (0.05 sec)

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

            ensureBuilderMapNonNull().put(key, valuesBuilder);
          }
          valuesBuilder.add(value);
          return this;
        }
    
        /**
         * Adds an entry to the built multimap.
         *
         * @since 11.0
         */
        @CanIgnoreReturnValue
        public Builder<K, V> put(Entry<? extends K, ? extends V> entry) {
          return put(entry.getKey(), entry.getValue());
        }
    
        /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

     * <p><b>Warning:</b> Unlike {@code Multiset}, entries whose values are zero are not automatically
     * removed from the map. Instead they must be removed manually with {@link #removeAllZeros}.
     *
     * @author Charles Fry
     * @since 11.0
     */
    @GwtCompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public final class AtomicLongMap<K> implements Serializable {
      private final ConcurrentHashMap<K, AtomicLong> map;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. docs/em/docs/advanced/settings.md

    def get_settings():
        return Settings()
    ```
    
    πŸ‘₯ πŸ”œ ✍ πŸ‘ˆ 🎚 πŸ”  πŸ“¨, &amp; πŸ‘₯ πŸ”œ πŸ‘‚ `.env` πŸ“ πŸ”  πŸ“¨. πŸ‘Ά πŸ‘Ά
    
    βœ‹οΈ πŸ‘₯ βš™οΈ `@lru_cache` πŸ‘¨β€πŸŽ¨ πŸ”› πŸ”, `Settings` 🎚 πŸ”œ ✍ πŸ•΄ πŸ•, πŸ₯‡ πŸ•° ⚫️ πŸ€™. πŸ‘Ά πŸ‘Ά
    
    ```Python hl_lines="1  10"
    {!../../docs_src/settings/app03/main.py!}
    ```
    
    ‴️ πŸ™† 🏁 πŸ€™ `get_settings()` πŸ”— ⏭ πŸ“¨, ↩️ πŸ› οΈ πŸ”— πŸ“Ÿ `get_settings()` &amp; πŸ— πŸ†• `Settings` 🎚, ⚫️ πŸ”œ πŸ“¨ 🎏 🎚 πŸ‘ˆ πŸ“¨ πŸ”› πŸ₯‡ πŸ€™, πŸ”„ &amp; πŸ”„.
    
    #### `lru_cache` πŸ“‘ β„Ή
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. go.sum

    go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=
    go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0=
    go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
    go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
    go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/errwrap/LICENSE

    1.9. β€œLicensable”
    
         means having the right to grant, to the maximum extent possible, whether at the
         time of the initial grant or subsequently, any and all of the rights conveyed by
         this License.
    
    1.10. β€œModifications”
    
         means any of the following:
    
         a. any file in Source Code Form that results from an addition to, deletion
            from, or modification of the contents of Covered Software; or
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilder.java

       * @return this {@code CacheBuilder} instance (for chaining)
       * @throws IllegalArgumentException if {@code maximumWeight} is negative
       * @throws IllegalStateException if a maximum weight or size was already set
       * @since 11.0
       */
      @GwtIncompatible // To be supported
      @CanIgnoreReturnValue
      public CacheBuilder<K, V> maximumWeight(long maximumWeight) {
        checkState(
            this.maximumWeight == UNSET_INT,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/Files.java

       * symlink to {@code x}, {@code a/../b} may refer to a sibling of {@code x}, rather than the
       * sibling of {@code a} referred to by {@code b}.
       *
       * @since 11.0
       */
      public static String simplifyPath(String pathname) {
        checkNotNull(pathname);
        if (pathname.length() == 0) {
          return ".";
        }
    
        // split the path apart
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jul 22 19:03:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. istioctl/pkg/precheck/precheck.go

      istioctl x precheck
    
      # Check only a single namespace
      istioctl x precheck --namespace default
    
      # Check for behavioral changes since a specific version
      istioctl x precheck --from-version 1.10`,
    		RunE: func(cmd *cobra.Command, args []string) (err error) {
    			msgs := diag.Messages{}
    			if !skipControlPlane {
    				msgs, err = checkControlPlane(ctx)
    				if err != nil {
    					return err
    				}
    			}
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 02:31:32 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. cmd/batch-expire_gen.go

    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *BatchJobExpireFilter) Msgsize() (s int) {
    	s = 1 + 10 + z.OlderThan.Msgsize() + 14
    	if z.CreatedBefore == nil {
    		s += msgp.NilSize
    	} else {
    		s += msgp.TimeSize
    	}
    	s += 5 + msgp.ArrayHeaderSize
    	for za0001 := range z.Tags {
    		s += z.Tags[za0001].Msgsize()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

       *
       * @param left the map to treat as the "left" map for purposes of comparison
       * @param right the map to treat as the "right" map for purposes of comparison
       * @return the difference between the two maps
       * @since 11.0
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          SortedMapDifference<K, V> difference(
              SortedMap<K, ? extends V> left, Map<? extends K, ? extends V> right) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top