- Sort Score
- Result 10 results
- Languages All
Results 1031 - 1040 of 1,405 for punt (0.03 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java
logger.warn("Overriding profile: '" + profileId + "' (source: " + existing.getSource() + ") with new instance from source: " + profile.getSource()); } profilesById.put(profile.getId(), profile); Activation activation = profile.getActivation(); if (activation != null && activation.isActiveByDefault()) { activateAsDefault(profileId); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
dataMap.put(StringUtil.decapitalize(entry.getKey()), entry.getValue()); } String hostname = fessConfig.getMailHostname(); if (StringUtil.isBlank(hostname)) { hostname = ComponentUtil.getSystemHelper().getHostname(); } dataMap.put("hostname", hostname);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24K bytes - Viewed (0) -
docs/bucket/replication/DESIGN.md
### Replication of object version and metadata
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 14.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
tesseractOCRConfig = new TesseractOCRConfig(); BeanUtil.copyMapToBean(propMap, tesseractOCRConfig); tesseractOCRConfigMap.put(tesseractConfigPath, tesseractOCRConfig); } parseContext.set(TesseractOCRConfig.class, tesseractOCRConfig); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapPutAllTester.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6.7K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/GcFinalizationTest.java
GcFinalization.awaitClear(ref); assertNull(ref.get()); } public void testAwaitDone_finalizationPredicate() { final WeakHashMap<Object, Object> map = new WeakHashMap<>(); map.put(new Object(), Boolean.TRUE); GcFinalization.awaitDone( new FinalizationPredicate() { @Override public boolean isDone() { return map.isEmpty(); } });
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 7.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/Interners.java
@SuppressWarnings("unchecked") E result = (E) canonical; return result; } } // didn't see it, trying to put it instead... Dummy sneaky = map.putIfAbsent(sample, Dummy.VALUE); if (sneaky == null) { return sample; } else { /* Someone beat us to it! Trying again... *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Mar 13 14:30:51 UTC 2023 - 5.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java
xpathAPI.set(cachedXPathAPI); } return cachedXPathAPI; } public void addMetadata(final String name, final String xpath) { metadataXpathMap.put(name, xpath); } /* * (non-Javadoc) * * @see * org.codelibs.fess.crawler.extractor.impl.AbstractXmlExtractor#getEncodingPattern() */ @Override
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.9K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeResolver.java
if (from.equals(to)) { return; } new TypeVisitor() { @Override void visitTypeVariable(TypeVariable<?> typeVariable) { mappings.put(new TypeVariableKey(typeVariable), to); } @Override void visitWildcardType(WildcardType fromWildcardType) { if (!(to instanceof WildcardType)) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 24.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
} } if (!docIdList.isEmpty()) { final Map<String, String[]> resultDocIdsCache = getResultDocIdsCache(session); resultDocIdsCache.put(queryId, docIdList.toArray(new String[docIdList.size()])); } }); } public String[] getResultDocIds(final String queryId) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.5K bytes - Viewed (0)