- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 5,126 for flaw (0.98 sec)
-
src/main/java/org/codelibs/fess/util/QueryResponseList.java
/** The total number of pages based on the page size and total record count. */ protected int allPageCount; /** Flag indicating whether there is a next page available. */ protected boolean existNextPage; /** Flag indicating whether there is a previous page available. */ protected boolean existPrevPage; /** The record number of the first record on the current page (1-based). */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt
*/ /** Byte 0 flag for whether this is the final fragment in a message. */ internal const val B0_FLAG_FIN = 128 /** Byte 0 reserved flag 1. Must be 0 unless negotiated otherwise. */ internal const val B0_FLAG_RSV1 = 64 /** Byte 0 reserved flag 2. Must be 0 unless negotiated otherwise. */ internal const val B0_FLAG_RSV2 = 32 /** Byte 0 reserved flag 3. Must be 0 unless negotiated otherwise. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/JobExecutorTest.java
final AtomicBoolean flag = new AtomicBoolean(false); ShutdownListener listener = new ShutdownListener() { @Override public void onShutdown() { flag.set(true); } }; assertFalse(flag.get()); listener.onShutdown(); assertTrue(flag.get()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/EditBody.java
* This class extends EditForm to inherit the necessary form validation and binding capabilities * for scheduler management operations. */ public class EditBody extends EditForm { /** * Flag indicating whether the scheduler job is currently running. */ public Boolean running; /** * Default constructor. */ public EditBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketReaderTest.kt
data.write("ca00".decodeHex()) // Empty pong, flag 1 set. assertFailsWith<ProtocolException> { clientReader.processNextFrame() }.also { expected -> assertThat(expected.message).isEqualTo("Unexpected rsv1 flag") } } @Test fun reservedFlag1IsUnsupportedForControlFrames() { data.write("ca00".decodeHex()) // Empty pong, flag 1 set. assertFailsWith<ProtocolException> {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
/** Total number of records available */ private int allRecordCount; /** Total number of pages available */ private int allPageCount; /** Flag indicating if previous page exists */ private boolean existPrePage; /** Flag indicating if next page exists */ private boolean existNextPage; /** List of page numbers for pagination display */ private List<Integer> pageNumberList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnenc
# # Environment Variable Prerequisites # # JAVA_HOME (Optional) Points to a Java installation. # MAVEN_OPTS (Optional) Java runtime options used when Maven is executed. # MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files. # -----------------------------------------------------------------------------
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 18 11:01:21 UTC 2024 - 1.3K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnsh
# # Environment Variable Prerequisites # # JAVA_HOME (Optional) Points to a Java installation. # MAVEN_OPTS (Optional) Java runtime options used when Maven is executed. # MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files. # -----------------------------------------------------------------------------
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Dec 17 09:50:45 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java
/** The total number of records. */ private int allRecordCount; /** The total number of pages. */ private int allPageCount; /** A flag indicating if a previous page exists. */ private boolean existPrePage; /** A flag indicating if a next page exists. */ private boolean existNextPage; /** A list of page numbers for navigation. */ private List<Integer> pageNumberList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
private int allRecordCount; /** Total number of pages available for pagination. */ 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 to display in pagination navigation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0)