- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 2,048 for BOOLEAN (0.04 sec)
-
src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java
private int allRecordCount; /** The total number of pages in the result set. */ private int allPageCount; /** Whether a previous page exists. */ private boolean existPrePage; /** Whether a next page exists. */ private boolean existNextPage; /** List of page numbers for navigation. */ private List<Integer> pageNumberList; /** The number of records to display 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) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketExtensions.kt
@JvmField val serverNoContextTakeover: Boolean = false, /** * True if the agreed upon extensions or parameters contained values unrecognized by OkHttp. * Typically this indicates that the client will need to close the web socket with code 1010. */ @JvmField val unknownValues: Boolean = false, ) { fun noContextTakeover(clientOriginated: Boolean): Boolean = if (clientOriginated) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
// Verify format - should contain "Thread:" entries boolean hasThreadEntry = capturedOutput.stream().anyMatch(line -> line.startsWith("Thread:")); assertTrue("Should contain Thread: entries", hasThreadEntry); // Verify format - should contain stack trace entries boolean hasStackTrace = capturedOutput.stream().anyMatch(line -> line.startsWith("\tat "));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt
private fun requestIsOneShot( e: IOException, userRequest: Request, ): Boolean { val requestBody = userRequest.body return (requestBody != null && requestBody.isOneShot()) || e is FileNotFoundException } private fun isRecoverable( e: IOException, requestSendStarted: Boolean, ): Boolean { // If there was a protocol problem, don't recover. if (e is ProtocolException) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 12.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
* @return true if the stream contains valid sitemap data, false otherwise */ protected boolean isValid(final InputStream in, final boolean recursive) { final BufferedInputStream bis = new BufferedInputStream(in); bis.mark(preloadSize); final byte[] bytes = new byte[preloadSize]; try { if (bis.read(bytes) == -1) { return false;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
} } private final SSPContext mechContext; private boolean firstResponse = true; private boolean completed; private ASN1ObjectIdentifier[] mechs; private ASN1ObjectIdentifier selectedMech; private ASN1ObjectIdentifier[] remoteMechs; private final boolean disableMic; private boolean requireMic; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestTest.java
return errorCode; } @Override public boolean verifySignature(byte[] buffer, int i, int size) { return true; } @Override public boolean isVerifyFailed() { return false; } @Override public boolean isError() { return errorCode != 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
*/ @NotThreadSafe class ProjectBuilderRequestBuilder { Session session; RequestTrace trace; Path path; Source source; boolean allowStubModel; boolean recursive; boolean processPlugins = true; List<RemoteRepository> repositories; ProjectBuilderRequestBuilder() {} /** * Sets the Maven session for this request.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 11.7K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Invokable.java
/** See {@link java.lang.reflect.AccessibleObject#setAccessible(boolean)}. */ public final void setAccessible(boolean flag) { accessibleObject.setAccessible(flag); } /** See {@link java.lang.reflect.AccessibleObject#trySetAccessible()}. */ @SuppressWarnings("CatchingUnchecked") // sneaky checked exception public final boolean trySetAccessible() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 18.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/DirectExecutorService.java
*/ @GuardedBy("lock") private int runningTasks = 0; @GuardedBy("lock") private boolean shutdown = false; @Override public void execute(Runnable command) { startTask(); try { command.run(); } finally { endTask(); } } @Override public boolean isShutdown() { synchronized (lock) { return shutdown; } } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Apr 12 15:07:59 UTC 2025 - 3.5K bytes - Viewed (0)