- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 1,913 for booleans (1.18 sec)
-
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
} @Override public boolean hasCapability(final int cap) throws SmbException { return this.treeConnection.hasCapability(cap); } /** * {@inheritDoc} * * @see jcifs.SmbTreeHandle#isConnected() */ @Override public boolean isConnected() { return this.treeConnection.isConnected(); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
*/ private int allPageCount; /** * Indicates whether a previous page exists before the current page. */ private boolean existPrePage; /** * Indicates whether a next page exists after the current page. */ private boolean existNextPage; /** * The list of page numbers to display in the pagination component. */ private List<Integer> pageNumberList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
private int allRecordCount; /** Total number of pages. */ private int allPageCount; /** Flag indicating whether a previous page exists. */ private boolean existPrePage; /** Flag indicating whether a next page exists. */ private boolean existNextPage; /** List of page numbers for navigation. */ private List<Integer> pageNumberList; /** Number of records per page. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
android/guava/src/com/google/common/base/SmallCharMatcher.java
final class SmallCharMatcher extends NamedFastMatcher { static final int MAX_SIZE = 1023; private final char[] table; private final boolean containsZero; private final long filter; private SmallCharMatcher(char[] table, long filter, boolean containsZero, String description) { super(description); this.table = table; this.filter = filter; this.containsZero = containsZero; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/context/AbstractCIFSContextTest.java
private final Credentials defaultCreds; private boolean closeCalled = false; public TestAbstractCIFSContext(Credentials defaultCreds) { this.defaultCreds = defaultCreds; } @Override protected Credentials getDefaultCredentials() { return defaultCreds; } @Override public boolean close() throws CIFSException { closeCalled = true;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
} @Override public boolean isRequestedSessionIdFromCookie() { return false; } @Override public boolean isRequestedSessionIdFromURL() { return false; } @Override public boolean authenticate(jakarta.servlet.http.HttpServletResponse response) { return false; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java
abstract int gcdInt(int a, int b); abstract long gcdLong(long a, long b); abstract boolean noAddOverflow(int a, int b); abstract boolean noAddOverflow(long a, long b); abstract boolean noMulOverflow(int a, int b); abstract boolean noMulOverflow(long a, long b); } private final int[] factorials = new int[ARRAY_SIZE];
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 6.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
public String toString() { return "IncompatibleKeyType"; } } protected final boolean supportsPut; protected final boolean supportsRemove; protected final boolean supportsClear; protected final boolean allowsNullKeys; protected final boolean allowsNullValues; protected final boolean supportsIteratorRemove; /** * Creates a new, empty instance of the class under test. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 43.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/KotlinDeprecationErrorTest.kt
fun cacheControl() { val cacheControl: CacheControl = CacheControl.Builder().build() val noCache: Boolean = cacheControl.noCache() val noStore: Boolean = cacheControl.noStore() val maxAgeSeconds: Int = cacheControl.maxAgeSeconds() val sMaxAgeSeconds: Int = cacheControl.sMaxAgeSeconds() val mustRevalidate: Boolean = cacheControl.mustRevalidate() val maxStaleSeconds: Int = cacheControl.maxStaleSeconds()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0)