- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for mille (0.17 sec)
-
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* This method blocks until the thread completes or the timeout expires. * * @param mills maximum time to wait in milliseconds */ public void awaitTermination(final long mills) { try { join(mills); } catch (final InterruptedException e) { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.carLicense=Permis de conduire labels.user_mobile=Mobile labels.mobile=Mobile labels.user_postalAddress=Adresse postale labels.postalAddress=Adresse postale labels.user_city=Ville labels.city=Ville labels.user_teletexTerminalIdentifier=Identifiant de terminal Teletex labels.teletexTerminalIdentifier=Identifiant de terminal Teletex labels.user_x121Address=x121Address labels.x121Address=x121Address
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.6K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 31.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LongMathTest.java
} } @GwtIncompatible // isPrime is GWT-incompatible public void testIsPrimeManyConstants() { // Test the thorough test inputs, which also includes special constants in the Miller-Rabin // tests. for (long l : POSITIVE_LONG_CANDIDATES) { assertEquals(BigInteger.valueOf(l).isProbablePrime(100), LongMath.isPrime(l)); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 31.4K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
} } throw new AssertionError(); } /* * If n <= millerRabinBases[i][0], then testing n against bases millerRabinBases[i][1..] suffices * to prove its primality. Values from miller-rabin.appspot.com. * * NOTE: We could get slightly better bases that would be treated as unsigned, but benchmarks * showed negligible performance improvements. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 29 16:20:07 UTC 2025 - 46.8K bytes - Viewed (0)