- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 415 for 1L (0.11 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWord.java
import org.dbflute.cbean.result.ListResultBean; /** * @author ESFlute (using FreeGen) */ public class ElevateWord extends BsElevateWord { private static final long serialVersionUID = 1L; private String[] labelTypeIds; private volatile List<LabelType> labelTypeList; /* (non-Javadoc) * @see org.codelibs.fess.db.exentity.CrawlingConfig#getLabelTypeIds() */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestBodyTest.kt
} @Test fun testFileDescriptor() { assertOnFileDescriptor { fd -> val requestBody = fd.toRequestBody() assertThat(requestBody.contentLength()).isEqualTo(-1L) assertThat(requestBody.isOneShot()).isEqualTo(true) } } @Test fun testFileDescriptorRead() { assertOnFileDescriptor(content = "Hello") { fd -> val requestBody = fd.toRequestBody()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.6K bytes - Viewed (1) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/ConnectionPoolTest.kt
assertThat(c1.socket().isClosed).isFalse() // Running at time 149, the pool returns that nothing can be evicted until time 150. assertThat(pool.closeConnections(149L)).isEqualTo(1L) assertThat(pool.connectionCount()).isEqualTo(1) assertThat(c1.socket().isClosed).isFalse() // Running at time 150, the pool evicts. assertThat(pool.closeConnections(150L)).isEqualTo(0)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
assertEquals(nameBytes.length, SMBUtil.readInt4(buffer, 8)); } @ParameterizedTest @DisplayName("Test with various timeout values") @ValueSource(longs = { 0L, 1L, -1L, Long.MAX_VALUE, Long.MIN_VALUE, 1000L, -1000L }) void testWithVariousTimeoutValues(long timeout) { // Setup String pipeName = "TestPipe";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java
import org.codelibs.fess.Constants; import org.codelibs.fess.util.ComponentUtil; /** * The pager for access token. */ public class AccessTokenPager implements Serializable { private static final long serialVersionUID = 1L; /** * Default constructor. */ public AccessTokenPager() { // nothing } /** * The default current page number. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java
* Provides pagination functionality for character mapping lists. */ public class CharMappingPager implements Serializable { private static final long serialVersionUID = 1L; /** Total number of records across all pages. */ private int allRecordCount; /** Total number of pages available. */ private int allPageCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/PathMapPager.java
public class PathMapPager implements Serializable { /** * Default constructor. */ public PathMapPager() { // Default constructor } private static final long serialVersionUID = 1L; /** Default page size. */ public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RolePager.java
* */ public class RolePager implements Serializable { /** * Constructor. */ public RolePager() { super(); } private static final long serialVersionUID = 1L; /** * Default page size for pagination. */ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number for pagination. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java
/** * Constructs a new pager for stopwords. */ public StopwordsPager() { // do nothing } private static final long serialVersionUID = 1L; /** The total number of records. */ private int allRecordCount; /** The total number of pages. */ private int allPageCount; /** A flag indicating if a previous page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/SmallCharMatcher.java
char[] table = new char[chooseTableSize(size)]; int mask = table.length - 1; for (int c = chars.nextSetBit(0); c != -1; c = chars.nextSetBit(c + 1)) { // Compute the filter at the same time. filter |= 1L << c; int index = smear(c) & mask; while (true) { // Check for empty. if (table[index] == 0) { table[index] = (char) c; break; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 4.5K bytes - Viewed (0)