Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 376 for putfull (0.16 sec)

  1. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultAttributesTest.groovy

            then:
            thrown(ManifestException)
        }
    
        def testKeyValidationWithPutAll() {
            when:
            attributes.putAll(':::': 'someValue')
    
            then:
            thrown(ManifestException)
    
            when:
            attributes.putAll((null): 'someValue')
    
            then:
            thrown(ManifestException)
        }
    
        def testValueValidationWithPut() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/MapPropertyMapViewTest.groovy

            mapProperty.put("first", "value1")
            Map<String, String> map = new MapPropertyMapView<>(mapProperty)
    
            when:
            map.put("second", "value2")
            map.put("third", "value3")
            map.putAll(["forth": "value4", "fifth": "value5"])
    
            then:
            mapProperty.get() == ["first": "value1", "second": "value2", "third": "value3", "forth": "value4", "fifth": "value5"]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSetMultimap.java

       *     ImmutableSetMultimap.<Character, Character>builder()
       *         .putAll('b', Arrays.asList('a', 'n', 'a', 'n', 'a'))
       *         .putAll('a', Arrays.asList('p', 'p', 'l', 'e'))
       *         .putAll('c', Arrays.asList('a', 'r', 'r', 'o', 't'))
       *         .putAll('a', Arrays.asList('s', 'p', 'a', 'r', 'a', 'g', 'u', 's'))
       *         .putAll('c', Arrays.asList('h', 'e', 'r', 'r', 'y'))
       *         .build();
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/properties/DefaultProjectPropertiesLoader.java

        @Override
        public Map<String, Object> loadProjectProperties() {
            Map<String, Object> properties = new HashMap<>();
    
            properties.putAll(projectPropertiesFromEnvironmentVariables());
            properties.putAll(projectPropertiesFromSystemProperties());
            properties.putAll(startParameter.getProjectProperties());
    
            return properties;
        }
    
        private Map<String, String> projectPropertiesFromSystemProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 16:05:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKey.kt

                }
            )
        }
    
        private
        fun Hasher.appendRequestedTasks() {
            val requestedTaskNames = startParameter.requestedTaskNames
            putAll(requestedTaskNames)
    
            val excludedTaskNames = startParameter.excludedTaskNames
            putAll(excludedTaskNames)
    
            val taskNames = requestedTaskNames.asSequence() + excludedTaskNames.asSequence()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ImmutableManagedValueSnapshot.java

        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString(className);
            if (value != null) {
                hasher.putString(value);
            } else {
                hasher.putNull();
            }
        }
    
        @Override
        public String toString() {
            return "(" + className + ") " + value;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/util/SetSystemProperties.java

        public SetSystemProperties() {
            properties = new Properties();
            properties.putAll(System.getProperties());
        }
    
        public SetSystemProperties(Map<String, Object> properties) {
            this();
            customProperties.putAll(properties);
        }
    
        @Override
        public Statement apply(final Statement base, Description description) {
            return new Statement() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/google/ListMultimapPutAllTester.java

    import com.google.common.collect.ListMultimap;
    import com.google.common.collect.testing.features.MapFeature;
    import java.util.Arrays;
    import java.util.List;
    import org.junit.Ignore;
    
    /**
     * Testers for {@link ListMultimap#putAll(Object, Iterable)}.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ForwardingMap.java

     * methods of the delegate. For example, overriding {@link #put} alone <i>will not</i> change the
     * behavior of {@link #putAll}, which can lead to unexpected behavior. In this case, you should
     * override {@code putAll} as well, either providing your own implementation, or delegating to the
     * provided {@code standardPutAll} method.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableBiMap.java

        }
    
        @CanIgnoreReturnValue
        @Override
        public Builder<K, V> putAll(Map<? extends K, ? extends V> map) {
          super.putAll(map);
          return this;
        }
    
        @CanIgnoreReturnValue
        @Override
        public Builder<K, V> putAll(Iterable<? extends Entry<? extends K, ? extends V>> entries) {
          super.putAll(entries);
          return this;
        }
    
        @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top