- Sort Score
- Result 10 results
- Languages All
Results 1421 - 1430 of 3,598 for long (0.13 sec)
-
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
* @param id The ID of the Kuromoji item. * @return An optional entity of the Kuromoji item. */ public OptionalEntity<KuromojiItem> getKuromojiItem(final String dictId, final long id) { return getKuromojiFile(dictId).map(file -> file.get(id).get()); } /** * Store a Kuromoji item. * * @param dictId The dictionary ID.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java
@BeforeExperiment void setUp() { // random integers will be generated in this range, then raised to the // power of (1/concentration) and floor()ed max = Ints.checkedCast((long) Math.pow(distinctKeys, concentration)); cache = CacheBuilder.newBuilder() .concurrencyLevel(segments) .maximumSize(maximumSize) .build(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.4K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java
} @Override public HashCode hashInt(int input) { return hashBytes(ByteBuffer.allocate(4).order(ByteOrder.LITTLE_ENDIAN).putInt(input).array()); } @Override public HashCode hashLong(long input) { return hashBytes(ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN).putLong(input).array()); } @Override public HashCode hashUnencodedChars(CharSequence input) { int len = input.length();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
* and contains form fields for file crawler configuration parameters. */ public class FileConfigPager implements Serializable { /** Serial version UID for serialization */ private static final long serialVersionUID = 1L; /** * Default constructor for file configuration pager. * Creates a new instance with default values. */ public FileConfigPager() { // Default constructor
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java
* Provides pagination support for related query operations including * search, display, and navigation through related query results. */ public class RelatedQueryPager implements Serializable { private static final long serialVersionUID = 1L; /** * Default current page number for pagination. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * Total number of records in the result set.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
user.setName("modified"); } } } // Test FessConfig implementation private static class TestFessConfig extends FessConfig.SimpleImpl { private static final long serialVersionUID = 1L; boolean ldapAdminSyncPassword = false; @Override public boolean isLdapAdminSyncPassword() { return ldapAdminSyncPassword; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withLongUrls() { // Test with very long URLs StringBuilder longParentUrl = new StringBuilder("http://example.com/"); StringBuilder longUrl = new StringBuilder("http://example.com/"); for (int i = 0; i < 100; i++) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
assertEquals(whitespaceMessage, exception.getMessage()); assertNull(exception.getCause()); } public void test_getMessage_withLongMessage() { // Test constructor with a long message StringBuilder longMessageBuilder = new StringBuilder(); for (int i = 0; i < 100; i++) { longMessageBuilder.append("SSO authentication failed for user "); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponseTest.java
dst[dstIndex++] = (byte) val; dst[dstIndex++] = (byte) (val >> 8); dst[dstIndex++] = (byte) (val >> 16); dst[dstIndex++] = (byte) (val >> 24); } private void writeInt8(long val, byte[] dst, int dstIndex) { dst[dstIndex++] = (byte) val; dst[dstIndex++] = (byte) (val >> 8); dst[dstIndex++] = (byte) (val >> 16); dst[dstIndex++] = (byte) (val >> 24);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java
* <li>network/transfer errors</li> * <li>file system errors: permissions</li> * </ul> * * TODO carlos: all these possible has*Exceptions and get*Exceptions methods make the clients too * complex requiring a long list of checks, need to create a parent/interface/encapsulation * for the types of exceptions */ @Deprecated public class ArtifactResolutionResult { private static final String LS = System.lineSeparator();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10K bytes - Viewed (0)