Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 163 for putNull (0.12 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

            Map<String, String> props = new HashMap<>();
            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 Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

            getAttributes().putAll(attributes);
            return this;
        }
    
        @Override
        public DefaultManifest attributes(Map<String, ?> attributes, String sectionName) {
            if (!sections.containsKey(sectionName)) {
                sections.put(sectionName, new DefaultAttributes());
            }
            sections.get(sectionName).putAll(attributes);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ArrayTable.java

       *     in {@link #rowKeySet()} or {@link #columnKeySet()}
       */
      @Override
      public void putAll(Table<? extends R, ? extends C, ? extends @Nullable V> table) {
        super.putAll(table);
      }
    
      /**
       * Not supported. Use {@link #erase} instead.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Use {@link #erase}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. 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: Tue Oct 31 16:03:42 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  5. 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.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

            }
            reportAccess(key, result);
            reportRemoval(key);
            return result;
    
        }
    
        @Override
        public void putAll(Map<?, ?> t) {
            synchronized (delegate) {
                delegate.putAll(t);
            }
            // putAll has no return value so keys do not become inputs.
            t.forEach(listener::onChange);
        }
    
        @Override
        public void clear() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

                effectiveSystemProperties.putAll(operationParametersSystemProperties);
                effectiveSystemProperties.putAll(daemonParams.getMutableAndImmutableSystemProperties());
            } else {
                GUtil.addToMap(effectiveSystemProperties, System.getProperties());
                effectiveSystemProperties.putAll(daemonParams.getMutableAndImmutableSystemProperties());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. src/mdo/java/ImmutableCollections.java

        }
    
        private static class ROProperties extends Properties {
            private ROProperties(Properties props) {
                super();
                if (props != null) {
                    // Do not use super.putAll, as it may delegate to put which throws an UnsupportedOperationException
                    for (Map.Entry<Object, Object> e : props.entrySet()) {
                        super.put(e.getKey(), e.getValue());
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            validateFields(form, v -> throwValidationError(v, this::asEditHtml));
            verifyToken(this::asEditHtml);
            getDoc(form).ifPresent(entity -> {
                try {
                    entity.putAll(fessConfig.convertToStorableDoc(form.doc));
    
                    final String newId = ComponentUtil.getCrawlingInfoHelper().generateId(entity);
                    entity.put(fessConfig.getIndexFieldId(), newId);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableRangeMap.java

          entries.add(Maps.immutableEntry(range, value));
          return this;
        }
    
        /** Copies all associations from the specified range map into this builder. */
        @CanIgnoreReturnValue
        public Builder<K, V> putAll(RangeMap<K, ? extends V> rangeMap) {
          for (Entry<Range<K>, ? extends V> entry : rangeMap.asMapOfRanges().entrySet()) {
            put(entry.getKey(), entry.getValue());
          }
          return this;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top