- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 58 for 300 (0.01 sec)
-
CHANGELOG/CHANGELOG-1.30.md
- [Changelog since v1.30.0](#changelog-since-v1300) - [Changes by Kind](#changes-by-kind-13) - [API Change](#api-change-4) - [Bug or Regression](#bug-or-regression-11) - [Dependencies](#dependencies-13) - [Added](#added-13) - [Changed](#changed-13) - [Removed](#removed-13) - [v1.30.0](#v1300) - [Downloads for v1.30.0](#downloads-for-v1300) - [Source Code](#source-code-14)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jun 18 18:59:10 UTC 2025 - 398.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
int count = 0; while (count < 300 && !isRunning) { // Wait until the crawler starts ThreadUtil.sleep(500); count++; final Map<String, Object> scheduler = getSchedulerItem(namePrefix); assertTrue(scheduler.containsKey("running")); isRunning = (Boolean) scheduler.get("running"); } if (300 <= count) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
guava/src/com/google/common/collect/Comparators.java
* * @param a first value to compare, returned if less than or equal to b. * @param b second value to compare. * @throws ClassCastException if the parameters are not <i>mutually comparable</i>. * @since 30.0 */ public static <T extends Comparable<? super T>> T min(T a, T b) { return (a.compareTo(b) <= 0) ? a : b; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.9K bytes - Viewed (0) -
guava/src/com/google/common/math/BigDecimalMath.java
import java.math.BigDecimal; import java.math.RoundingMode; /** * A class for arithmetic on {@link BigDecimal} that is not covered by its built-in methods. * * @author Louis Wasserman * @since 30.0 */ @J2ktIncompatible @GwtIncompatible public class BigDecimalMath { private BigDecimalMath() {} /** * Returns {@code x}, rounded to a {@code double} with the specified rounding mode. If {@code x}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/net/MediaType.java
* 8081</a>. * * @since 30.0 */ public static final MediaType FONT_COLLECTION = createConstant(FONT_TYPE, "collection"); /** * <a href="https://en.wikipedia.org/wiki/OpenType">Open Type Font Format</a> (OTF) as defined by * <a href="https://tools.ietf.org/html/rfc8081">RFC 8081</a>. * * @since 30.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
src/test/resources/plugin/repo3/fess-crawler-lasta/maven-metadata.xml
<version>2.6.0</version> <version>2.6.1</version> <version>2.6.2</version> <version>2.6.3</version> <version>2.7.0</version> <version>2.7.1</version> <version>3.0.0</version> <version>3.0.1</version> <version>3.0.2</version> <version>3.1.0</version> <version>3.2.0</version> <version>3.2.1</version> <version>3.3.0</version>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jun 17 13:30:41 UTC 2024 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
* 8081</a>. * * @since 30.0 */ public static final MediaType FONT_COLLECTION = createConstant(FONT_TYPE, "collection"); /** * <a href="https://en.wikipedia.org/wiki/OpenType">Open Type Font Format</a> (OTF) as defined by * <a href="https://tools.ietf.org/html/rfc8081">RFC 8081</a>. * * @since 30.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
android/guava/src/com/google/common/math/BigDecimalMath.java
import java.math.BigDecimal; import java.math.RoundingMode; /** * A class for arithmetic on {@link BigDecimal} that is not covered by its built-in methods. * * @author Louis Wasserman * @since 30.0 */ @J2ktIncompatible @GwtIncompatible public class BigDecimalMath { private BigDecimalMath() {} /** * Returns {@code x}, rounded to a {@code double} with the specified rounding mode. If {@code x}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java
} } } /** * Invokes {@code lock.}{@link Lock#tryLock(long, TimeUnit) tryLock(timeout, unit)} * uninterruptibly. * * @since 33.4.0 (but since 30.0 in the JRE flavor) */ @J2ktIncompatible @GwtIncompatible // concurrency @IgnoreJRERequirement // Users will use this only if they're already using Duration.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java
String result = scoreUpdater.execute(); assertTrue(result.contains("TestScoreBooster : 100")); assertTrue(result.contains("Test exception")); assertTrue(result.contains("TestScoreBooster : 300")); } // Test addScoreBooster with different priorities public void test_addScoreBooster_sortsByPriority() { PriorityTrackingBooster booster1 = new PriorityTrackingBooster(1, 100L);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0)