- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 415 for 1L (0.01 sec)
-
src/test/java/org/codelibs/fess/query/QueryTestBase.java
*/ protected FessConfig.SimpleImpl createBaseFessConfig() { return new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String get(String key) { // Override to return empty string instead of null to avoid NullPointerException return ""; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Utf8.java
if (utf8Length < utf16Length) { // Necessary and sufficient condition for overflow because of maximum 3x expansion throw new IllegalArgumentException( "UTF-8 length does not fit in int: " + (utf8Length + (1L << 32))); } return utf8Length; } private static int encodedLengthGeneral(CharSequence sequence, int start) { int utf16Length = sequence.length(); int utf8Length = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDataConfig.java
// Definition // ========== private static final long serialVersionUID = 1L; protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsScheduledJob.java
// Definition // ========== private static final long serialVersionUID = 1L; protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
public void setUp() throws Exception { super.setUp(); // Set up FessConfig mock ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getIndexFieldUrl() { return "url"; } @Override public String getIndexFieldTitle() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
val cookieValue = setCookie.trimSubstring(pairEqualsSign + 1, cookiePairEnd) if (cookieValue.indexOfControlOrNonAscii() != -1) return null var expiresAt = MAX_DATE var deltaSeconds = -1L var domain: String? = null var path: String? = null var secureOnly = false var httpOnly = false var hostOnly = true var persistent = false var sameSite: String? = null
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 23.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java
public void testRemoveRegression() { MinMaxPriorityQueue<Long> queue = MinMaxPriorityQueue.create(ImmutableList.of(2L, 3L, 0L, 4L, 1L)); queue.remove(4L); queue.remove(1L); assertThat(queue).doesNotContain(1L); } public void testRandomRemoves() { Random random = new Random(0); for (int attempts = 0; attempts < reduceIterationsIfGwt(1000); attempts++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java
// Re-create the base FessConfig with the new query type ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; private final FessConfig baseConfig = createBaseFessConfig(); @Override public String getQueryDefaultQueryType() { return queryType; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
void testUnspecifiedSessionId() { assertEquals(0xFFFFFFFFFFFFFFFFL, Smb2Constants.UNSPECIFIED_SESSIONID, "Unspecified SessionId must be 0xFFFFFFFFFFFFFFFF"); assertEquals(-1L, Smb2Constants.UNSPECIFIED_SESSIONID, "Unspecified SessionId as signed long should be -1"); } @Test @DisplayName("Unspecified FileId should be immutable")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
SMBUtil.writeInt4(0x00000001, header, 16); // Flags // Command SMB2_CREATE (0x0005) SMBUtil.writeInt2(0x0005, header, 12); // Some message id SMBUtil.writeInt8(1L, header, 24); return header; } /** * Build a basic CREATE response body without create contexts. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0)