- Sort Score
- Result 10 results
- Languages All
Results 1401 - 1410 of 3,473 for final (0.07 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/features/TesterRequirements.java
* be run against that class. * * @author George van den Driessche */ @GwtCompatible public final class TesterRequirements { private final Set<Feature<?>> presentFeatures; private final Set<Feature<?>> absentFeatures; public TesterRequirements(Set<Feature<?>> presentFeatures, Set<Feature<?>> absentFeatures) { this.presentFeatures = copyToSet(presentFeatures);Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 2.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java
static final Integer N1 = 1; static final Integer N2 = 2; static final Integer N3 = 3; static final Integer N4 = 4; static final Integer N5 = 5; static final Integer NODE_NOT_IN_GRAPH = 1000; static final String E11 = "1-1"; static final String E11_A = "1-1a"; static final String E12 = "1-2"; static final String E12_A = "1-2a"; static final String E12_B = "1-2b";
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
* * @param origin the origin pattern (can be "*" for wildcard) * @param handler the CORS handler to associate with the origin */ public void add(final String origin, final CorsHandler handler) { if (logger.isDebugEnabled()) { logger.debug("Loaded {}", origin); } handerMap.put(origin, handler); } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/NormalizerChain.java
public NormalizerChain() { // nothing } List<Normalizer> normalizers = new ArrayList<>(); @Override public String normalize(final String text, final String field, final String... langs) { String tmp = text; for (final Normalizer normalizer : normalizers) { tmp = normalizer.normalize(tmp, field, langs); } return tmp; } /**
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java
ComponentUtil.getSystemHelper().calibrateCpuLoad(); try { final IntervalControlHelper intervalControlHelper = ComponentUtil.getIntervalControlHelper(); intervalControlHelper.checkCrawlerStatus(); intervalControlHelper.delayByRules(); } catch (final Exception e) {} super.delayForWaitingNewUrl(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
super.setUp(); validator = new CronExpressionValidator(); } public void test_isValid_nullValue() { final ConstraintValidatorContext context = null; assertTrue(validator.isValid(null, context)); } public void test_isValid_blankValue() { final ConstraintValidatorContext context = null; assertTrue(validator.isValid(" ", context));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java
*/ @Override public InetAddress[] resolve(final String host) throws UnknownHostException { return InetAddress.getAllByName(toAscii(host)); } /** * Decodes the given host string using the specified encoding. * * @param host the host string to decode * @return the decoded host string */ protected String decode(final String host) { if (host.indexOf('%') == -1) {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
* be accessed. */ @SuppressWarnings("SunApi") // b/345822163 private static final class UnsafeAtomicHelper extends AtomicHelper { static final Unsafe UNSAFE; static final long LISTENERS_OFFSET; static final long WAITERS_OFFSET; static final long VALUE_OFFSET; static final long WAITER_THREAD_OFFSET; static final long WAITER_NEXT_OFFSET; static { Unsafe unsafe = null; try {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
duplicateHostList = new ArrayList<>(); } try { final DuplicateHostService duplicateHostService = ComponentUtil.getComponent(DuplicateHostService.class); duplicateHostList.addAll(duplicateHostService.getDuplicateHostList()); } catch (final AutoBindingFailureException e) { logger.warn("DuplicateHostService is not found.", e); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
} // Helper method to create mock callbacks with preset values private IndexUpdateCallback createMockCallback(final long docSize, final long execTime) { return new IndexUpdateCallback() { private final AtomicLong documentCount = new AtomicLong(docSize); @Override public void store(DataStoreParams paramMap, Map<String, Object> dataMap) {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0)