Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 376 for putfull (0.18 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

        // Test #putAll(K, Collection<V>)
        try {
          multimap.putAll(sampleKey, sampleValueAsCollection);
          fail("putAll(K, Iterable) succeeded on unmodifiable multimap");
        } catch (UnsupportedOperationException expected) {
        }
        assertMultimapRemainsUnmodified(multimap, originalEntries);
    
        // Test #putAll(Multimap<K, V>)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/BenchmarkHelpers.java

            newMap.putAll(map);
            return newMap;
          }
        },
        MapMakerStrongKeysWeakValues {
          @Override
          public <K extends Comparable<K>, V> Map<K, V> create(Map<K, V> map) {
            ConcurrentMap<K, V> newMap = new MapMaker().weakValues().makeMap();
            checkState(newMap instanceof MapMakerInternalMap);
            newMap.putAll(map);
            return newMap;
          }
        },
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 04 04:06:35 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/AbstractFilteredMapTest.java

        Map<String, Integer> filtered = Maps.filterKeys(unfiltered, NOT_LENGTH_3);
        filtered.put("a", 1);
        filtered.put("b", 2);
        assertEquals(ImmutableMap.of("a", 1, "b", 2), filtered);
    
        try {
          filtered.putAll(ImmutableMap.of("c", 3, "zzz", 4, "b", 5));
          fail();
        } catch (IllegalArgumentException expected) {
        }
    
        assertEquals(ImmutableMap.of("a", 1, "b", 2), filtered);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/ForwardingCache.java

      }
    
      /** @since 11.0 */
      @Override
      public void put(K key, V value) {
        delegate().put(key, value);
      }
    
      /** @since 12.0 */
      @Override
      public void putAll(Map<? extends K, ? extends V> m) {
        delegate().putAll(m);
      }
    
      @Override
      public void invalidate(Object key) {
        delegate().invalidate(key);
      }
    
      /** @since 11.0 */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ForwardingTable.java

        return delegate().put(rowKey, columnKey, value);
      }
    
      @Override
      public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
        delegate().putAll(table);
      }
    
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/LayoutToPropertiesConverter.java

            @Override
            public Result merge(Map<String, String> systemProperties) {
                Map<String, String> properties = new HashMap<>(this.properties);
                properties.putAll(systemProperties);
                properties.putAll(initialProperties.getRequestedSystemProperties());
                return new Result(properties, daemonJvmProperties, initialProperties);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/MapPropertyMapView.java

        @Nullable
        public V put(K key, V value) {
            V oldValue = get(key);
            delegate.put(key, value);
            return oldValue;
        }
    
        @Override
        public void putAll(Map<? extends K, ? extends V> m) {
            delegate.putAll(m);
        }
    
        @Override
        @Nullable
        public V remove(Object key) {
            Map<K, V> map = new LinkedHashMap<>(delegate.get());
            V oldValue = map.remove(key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/context/SingletonContext.java

                    }
                }
    
            }
            catch ( IOException ioe ) {
                log.error("Failed to load config", ioe); //$NON-NLS-1$
            }
            p.putAll(System.getProperties());
            if ( props != null ) {
                p.putAll(props);
            }
            INSTANCE = new SingletonContext(p);
        }
    
    
        /**
         * Get singleton context
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 08:53:08 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            this.repositorySystemSession = requireNonNull(repositorySystemSession);
            Properties executionProperties = new Properties();
            executionProperties.putAll(request.getSystemProperties());
            executionProperties.putAll(request.getUserProperties());
            this.executionProperties = executionProperties;
        }
    
        @Deprecated
        public MavenSession(
                PlexusContainer container,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/mapProperty/groovy/build.gradle

    def b = 0
    def c = 0
    
    tasks.register('generate', Generator) {
        properties.put("a", 1)
        // Values have not been configured yet
        properties.put("b", providers.provider { b })
        properties.putAll(providers.provider { [c: c, d: c + 1] })
    }
    
    // Configure the values. There is no need to reconfigure the task
    b = 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 629 bytes
    - Viewed (0)
Back to top