Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 376 for putfull (0.22 sec)

  1. 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)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/util/ReproduciblePropertiesWriter.kt

                PropertiesUtils.store(properties, file, comment, Charsets.ISO_8859_1, "\n")
            }
    
            private
            fun propertiesFrom(data: Map<String, Any>): Properties = Properties().apply {
                putAll(data.map { (key, value) -> key to value.toString() })
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/main/ConventionStorage.kt

        override fun registerConventions(conventionsBySoftwareType: Map<String, SoftwareTypeConventionResolutionResults>) {
            conventionsMap.clear()
            conventionsMap.putAll(conventionsBySoftwareType)
        }
    
        override fun findConventions(softwareTypeName: String): SoftwareTypeConventionResolutionResults? =
            conventionsMap[softwareTypeName]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

            } else if (targetLocations == null) {
                locations = sourceLocations;
            } else {
                locations = new LinkedHashMap<>();
                locations.putAll(sourceDominant ? targetLocations : sourceLocations);
                locations.putAll(sourceDominant ? sourceLocations : targetLocations);
            }
    
            return new InputLocation(-1, -1, InputSource.merge(source.getSource(), target.getSource()), locations);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractResourcePattern.java

            attributes.putAll(toAttributes(artifact.getName()));
            return attributes;
        }
    
        protected Map<String, String> toAttributes(ModuleIdentifier module, IvyArtifactName ivyArtifactName) {
            Map<String, String> attributes = toAttributes(module);
            attributes.putAll(toAttributes(ivyArtifactName));
            return attributes;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/BaseCIFSTest.java

            return new CIFSConfigContextWrapper(ctx, cfg);
        }
    
    
        @Before
        public void setUp () throws Exception {
            Properties props = new Properties();
            props.putAll(this.properties);
            this.context = AllTests.getCachedContext(this.name, props);
        }
    
    
        @After
        public void tearDown () throws Exception {
            System.gc();
            System.gc();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeRangeMap.java

        @Override
        public void putAll(RangeMap<K, ? extends V> rangeMap) {
          if (rangeMap.asMapOfRanges().isEmpty()) {
            return;
          }
          Range<K> span = rangeMap.span();
          checkArgument(
              subRange.encloses(span),
              "Cannot putAll rangeMap with span %s into a subRangeMap(%s)",
              span,
              subRange);
          TreeRangeMap.this.putAll(rangeMap);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/mdo/merger.vm

            #end
                } else {
                    Map<String, String> merged = new HashMap<>();
                    merged.putAll(sourceDominant ? target.get${capField}() : source.get${capField}());
                    merged.putAll(sourceDominant ? source.get${capField}() : target.get${capField}());
                    builder.${field.name}(merged);
            #if ( $locationTracking )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/exentity/Role.java

            final Map<String, Object> sourceMap = new HashMap<>();
            if (name != null) {
                sourceMap.put("name", name);
            }
            if (attributes != null) {
                sourceMap.putAll(attributes);
            }
            return sourceMap;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/DefaultGradlePropertiesLoader.java

            Map<String, String> propertiesFile = environment.propertiesFile(new File(dir, GRADLE_PROPERTIES));
            if (propertiesFile != null) {
                target.putAll(propertiesFile);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 11:38:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top