Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 163 for putNull (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

            Map<Attribute<?>, DefaultImmutableAttributes> hierarchy = new LinkedHashMap<>();
            hierarchy.putAll(parent.hierarchy);
            hierarchy.put(attribute, this);
            this.hierarchy = ImmutableMap.copyOf(hierarchy);
            Map<String, DefaultImmutableAttributes> hierarchyByName = new LinkedHashMap<>();
            hierarchyByName.putAll(parent.hierarchyByName);
            hierarchyByName.put(attribute.getName(), this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableBiMap.java

         *
         * @throws NullPointerException if any key or value in {@code map} is null
         */
        @CanIgnoreReturnValue
        @Override
        public Builder<K, V> putAll(Map<? extends K, ? extends V> map) {
          super.putAll(map);
          return this;
        }
    
        /**
         * Adds all of the given entries to the built bimap. Duplicate keys or values are not allowed,
         * and will cause {@link #build} to fail.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        assertFalse(bf1.isCompatible(bf2));
        assertThrows(
            IllegalArgumentException.class,
            () -> {
              bf1.putAll(bf2);
            });
    
        assertFalse(bf2.isCompatible(bf1));
        assertThrows(
            IllegalArgumentException.class,
            () -> {
              bf2.putAll(bf1);
            });
      }
    
      public void testPutAllWithSelf() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/Config.java

         * using the <tt>-Djcifs.properties=</tt> commandline parameter.
         */
    
        public static void setProperties( Properties prp ) {
            Config.prp = new Properties( prp );
            try {
                Config.prp.putAll( System.getProperties() );
            } catch( SecurityException se ) {
                if( log.level > 1 )
                    log.println( "SecurityException: jcifs.smb1 will ignore System properties" );
            }
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

                    Collections.reverse(reverseOrder);
                    for (Object object : reverseOrder) {
                        properties.putAll(asDynamicObject(object).getProperties());
                    }
                }
                properties.putAll(extensionsStorage.getAsMap());
                return properties;
            }
    
            @Override
            public DynamicInvokeResult tryGetProperty(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            'existing'   | 'existingValue' | 'changed'
            'missingKey' | null            | 'changed'
        }
    
        def "method putAll() reports argument as change only"() {
            when:
            def update = [existing: 'changedExisting', missing: 'changedMissing']
            getMapUnderTestToWrite().putAll(update)
    
            then:
            1 * onChange.accept('existing', 'changedExisting')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

        }
    
        private Map<MavenDependencyKey, PomDependencyMgt> resolveDependencyMgt() {
            Map<MavenDependencyKey, PomDependencyMgt> dependencies = new LinkedHashMap<>();
            dependencies.putAll(pomParent.getDependencyMgt());
            dependencies.putAll(importedDependencyMgts);
            for (PomDependencyMgt dependencyMgt : parseDependencyMgt()) {
                dependencies.put(dependencyMgt.getId(), dependencyMgt);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

            Properties props = new Properties();
            if (recessive != null) {
                props.putAll(recessive);
            }
            if (dominant != null) {
                props.putAll(dominant);
            }
            return props;
        }
    
        private Artifact getRelocation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutorTest.groovy

            }
            1 * store.getIfPresent(_) >> Mock(CrossBuildCachingRuleExecutor.CachedEntry) {
                getResult() >> new Result(length: 123)
                getImplicits() >> ImmutableMultimap.builder()
                    .putAll("SomeService", implicitInput)
                    .build()
            }
            1 * implicitInput.getInput() >> '/foo/bar'
            1 * implicitInput.getOutput() >> 'abcdef012'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimap.java

       */
      @CanIgnoreReturnValue
      boolean putAll(@ParametricNullness K key, Iterable<? extends V> values);
    
      /**
       * Stores all key-value pairs of {@code multimap} in this multimap, in the order returned by
       * {@code multimap.entries()}.
       *
       * @return {@code true} if the multimap changed
       */
      @CanIgnoreReturnValue
      boolean putAll(Multimap<? extends K, ? extends V> multimap);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top