- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 1,886 for omap (0.03 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileToRawModelMerger.java
// don't merge } @Override protected void mergeModel_Profiles( Model.Builder builder, Model target, Model source, boolean sourceDominant, Map<Object, Object> context) { Iterator<Profile> sourceIterator = source.getProfiles().iterator(); builder.profiles(target.getProfiles().stream()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
} return true; } protected static Map<String, String> createPropItem(final String key) { return createItem(key, System.getProperty(key)); } protected static Map<String, String> createItem(final Object label, final Object value) { final Map<String, String> map = new HashMap<>(2); map.put(Constants.ITEM_LABEL, label != null ? label.toString() : StringUtil.EMPTY);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.5K bytes - Viewed (0) -
cmd/metrics-v3-types.go
} } type metricValue struct { Labels map[string]string Value float64 } // MetricValues - type to set metric values retrieved while loading metrics. A // value of this type is passed to the `MetricsLoaderFn`. type MetricValues struct { values map[MetricName][]metricValue descriptors map[MetricName]MetricDescriptor } func newMetricValues(d map[MetricName]MetricDescriptor) MetricValues {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 30 22:28:46 UTC 2024 - 15.6K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/ArtifactUtilsTest.java
list.add(newArtifact("c")); list.add(newArtifact("e")); list.add(newArtifact("d")); Map<String, Artifact> map = ArtifactUtils.artifactMapByVersionlessId(list); assertNotNull(map); assertEquals(list, new ArrayList<>(map.values())); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
@AfterAll protected static void tearDownAll() { final List<Map<String, Object>> jobLogList = readJobLog(NAME_PREFIX); for (Map<String, Object> elem : jobLogList) { deleteMethod("/api/admin/joblog/log/" + elem.get("id")); } final List<Map<String, Object>> crawlingInfoList = readCrawlingInfo(webConfigId); for (Map<String, Object> elem : crawlingInfoList) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapKeySet.java
private final ImmutableMap<K, V> map; ImmutableMapKeySet(ImmutableMap<K, V> map) { this.map = map; } @Override public int size() { return map.size(); } @Override public UnmodifiableIterator<K> iterator() { return map.keyIterator(); } @Override public Spliterator<K> spliterator() { return map.keySpliterator(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
public static class ApiSystemInfoResponse extends ApiResponse { protected List<Map<String, String>> envProps; protected List<Map<String, String>> systemProps; protected List<Map<String, String>> fessProps; protected List<Map<String, String>> bugReportProps; public ApiSystemInfoResponse envProps(final List<Map<String, String>> envProps) { this.envProps = envProps; return this;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.5K bytes - Viewed (0) -
dbflute_fess/dfprop/commonColumnMap.dfprop
# commonColumnMap: (Default map:{}) # # The definition of common column(contains auto set-up). # For example, the date you registered the record, # the user who updated the record and so on... # The column names are treated as case insensitive. # # The variable '$$AccessContext$$' means allcommon.AccessContext. # # Example: # map:{ # ; commonColumnMap = map:{
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 1.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SynchronizedMapTest.java
} public void testKeySet() { Map<String, Integer> map = create(); Set<String> keySet = map.keySet(); assertTrue(keySet instanceof SynchronizedSet); assertSame(mutex, ((SynchronizedSet<?>) keySet).mutex); } public void testValues() { Map<String, Integer> map = create(); Collection<Integer> values = map.values(); assertTrue(values instanceof SynchronizedCollection);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 06 17:23:04 UTC 2024 - 5.8K bytes - Viewed (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# If you use Oracle and its Synonym, specify this property. #; includeSynonyms=true } # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o variousMap: (NotRequired - Default map:{}) # The various settings about JDBC task mainly. # ; variousMap = map:{ # o objectTypeTargetList: (NotRequired - Default list:{TABLE;VIEW})
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0)