- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 500 for State (0.66 sec)
-
src/main/java/jcifs/smb/WinError.java
int ERROR_SUCCESS = 0; /** Access is denied */ int ERROR_ACCESS_DENIED = 5; /** No more connections can be made to this remote computer */ int ERROR_REQ_NOT_ACCEP = 71; /** The pipe state is invalid */ int ERROR_BAD_PIPE = 230; /** All pipe instances are busy */ int ERROR_PIPE_BUSY = 231; /** The pipe is being closed */ int ERROR_NO_DATA = 232;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/WinError.java
int ERROR_SUCCESS = 0; /** Access is denied */ int ERROR_ACCESS_DENIED = 5; /** No more connections can be made to this remote computer */ int ERROR_REQ_NOT_ACCEP = 71; /** The pipe state is invalid */ int ERROR_BAD_PIPE = 230; /** All pipe instances are busy */ int ERROR_PIPE_BUSY = 231; /** The pipe is being closed */ int ERROR_NO_DATA = 232;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/ListenableFutureTaskTest.java
super.tearDown(); } public void testListenerDoesNotRunUntilTaskCompletes() throws Exception { // Test default state of not started. assertEquals(1, listenerLatch.getCount()); assertFalse(task.isDone()); assertFalse(task.isCancelled()); // Start the task to put it in the RUNNING state. Have to use a separate // thread because the task will block on the task latch after unblocking // the run latch.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
public void init() { createFilterChain(); } /** * Executes query processing through the filter chain. * * @param context the query context containing search parameters and state * @param query the Lucene query to be processed * @param boost the boost factor to apply to the query * @return the processed OpenSearch QueryBuilder */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java
package org.codelibs.fess.app.pager; import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager for managing stopwords pagination. * This class handles the state and logic for paginating through a list of stopwords, * including total record count, page size, and current page number. */ public class StopwordsPager implements Serializable { /**
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/test/java/jcifs/smb/SimpleMemoryManagementTest.java
@Test @Timeout(5) public void testSessionLifecycle() throws Exception { SmbSessionImpl session = new SmbSessionImpl(mockContext, "testhost", "testdomain", mockTransport); // Test initial state - session starts with usage count > 0 due to transport.acquire() assertTrue(session.isInUse(), "New session should be in use due to transport acquisition"); // Test additional acquire session.acquire();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
assertDoesNotThrow(() -> response.prepare(mockRequest)); } } @Nested @DisplayName("State Management Tests") class StateManagementTests { @Test @DisplayName("Should reset state correctly") void testReset() { // Set initial state response.received(); assertTrue(response.isReceived()); // Reset
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java
*/ package org.codelibs.fess.app.web.error; import java.util.HashMap; import java.util.Map; /** * Form class for handling error page data and search parameters. * This form captures the state of a search request when an error occurs, * allowing the error page to display relevant information and preserve search context. */ public class ErrorForm { /** Map of form fields and their validation error messages */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Streams.java
spliterator.forEachRemaining(state::set); return java.util.Optional.of(state.get()); } Spliterator<T> prefix = spliterator.trySplit(); if (prefix == null || prefix.getExactSizeIfKnown() == 0) { // we can't split this any further spliterator.forEachRemaining(state::set); if (state.set) { return java.util.Optional.of(state.get()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 37K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/WebSocket.kt
* * * **Canceled:** the web socket connection failed. Messages that were successfully enqueued by * either peer may not have been transmitted to the other. * * Note that the state progression is independent for each peer. Arriving at a gracefully-closed * state indicates that a peer has sent all of its outgoing messages and received all of its * incoming messages. But it does not guarantee that the other peer will successfully receive all of
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.3K bytes - Viewed (0)