- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 5,054 for flaw (0.66 sec)
-
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
/** Total number of records across all pages */ private int allRecordCount; /** Total number of pages */ private int allPageCount; /** Flag indicating if a previous page exists */ private boolean existPrePage; /** Flag indicating if a 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 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.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 for pagination navigation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RoleTypePager.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 pagination navigation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
private int allRecordCount; /** Total number of pages calculated from record count and page size. */ 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 pagination navigation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
} override fun getNeedClientAuth(): Boolean = delegate!!.needClientAuth override fun getWantClientAuth(): Boolean = delegate!!.wantClientAuth override fun setEnableSessionCreation(flag: Boolean) { delegate!!.enableSessionCreation = flag } override fun getEnableSessionCreation(): Boolean = delegate!!.enableSessionCreation override fun getSSLParameters(): SSLParameters = delegate!!.sslParameters
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
/** Total number of records across all pages. */ private int allRecordCount; /** Total number of pages. */ private int allPageCount; /** Flag indicating if there is a previous page. */ private boolean existPrePage; /** Flag indicating if there is a next page. */ private boolean existNextPage; /** List of page numbers for pagination navigation. */ private List<Integer> pageNumberList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt
if (outFinished) { this.sink.finished = true notifyAll() // Because doReadTimeout() may have changed. } } // Only DATA frames are subject to flow-control. Transmit the HEADER frame if the connection // flow-control window is fully depleted. if (!flushHeaders) { withLock { flushHeaders = (connection.writeBytesTotal >= connection.writeBytesMaximum) } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 18:57:05 UTC 2025 - 22.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/FlowControlListener.kt
interface FlowControlListener { /** * Notification that the receiving stream flow control window has changed. * [WindowCounter] generally carries the client view of total and acked bytes. */ fun receivingStreamWindowChanged( streamId: Int, windowCounter: WindowCounter, bufferSize: Long, ) /** * Notification that the receiving connection flow control window has changed.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 1.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/main/java/org/codelibs/fess/auth/chain/CommandChain.java
private final Process process; /** The timeout duration in milliseconds. */ private final long timeout; /** Flag indicating if the process has finished. */ private boolean finished = false; /** Flag indicating if the process has been terminated. */ private boolean teminated = false; /** * Constructor for MonitorThread.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0)