- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 533 for become (0.04 sec)
-
src/main/java/jcifs/SmbPipeHandle.java
* * @return whether the FD is open and valid */ boolean isOpen(); /** * Tests whether this file descriptor was previously open but has become invalid. * * @return whether the FD was previously open but became invalid */ boolean isStale(); /** * Unwraps this handle to the specified type. * * @param <T> the type to unwrap to
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponse.java
*/ package jcifs.internal.smb1.trans; import jcifs.Configuration; /** * Response for SMB1 TRANS_WAIT_NAMED_PIPE transaction. * * This response is received after waiting for a named pipe to become available * for connection when the pipe server was busy. */ public class TransWaitNamedPipeResponse extends SmbComTransactionResponse { /** * Constructs a response for a wait named pipe request. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java
package jcifs.internal.smb1.trans; import jcifs.Configuration; /** * SMB1 Transaction Wait Named Pipe request implementation. * Implements the TRANS_WAIT_NAMED_PIPE transaction to wait for a named pipe * to become available when the pipe server is busy or temporarily unavailable. * * @author mbechler */ public class TransWaitNamedPipe extends SmbComTransaction { /** * Constructs a wait request for a named pipe.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FsctlPipeWaitRequest.java
import jcifs.Encodable; import jcifs.internal.util.SMBUtil; /** * File System Control Code (FSCC) request for pipe wait operations. * Implements the FSCTL_PIPE_WAIT control code used to wait for a named pipe * to become available when attempting to connect to a busy pipe. * * @author mbechler */ public class FsctlPipeWaitRequest implements Encodable { private final byte[] nameBytes; private final long timeout;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
docs/site-replication/README.md
that STS tokens signed previously by root credentials will no longer be valid upon upgrading to the latest version with this change. Please re-generate them as you usually do. Additionally, if site replication is ever removed - the STS tokens will become invalid, regenerate them as you usually do....
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 3.4K bytes - Viewed (0) -
docs/bucket/lifecycle/README.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeConnectionTraceTest.java
SmbTreeConnectionTrace trace = Mockito.spy(new SmbTreeConnectionTrace(ctx)); doThrow(thrown).when(trace).connect(loc); // Act & Assert: both UnknownHostException and IOException should become CIFSException (SmbException) CIFSException ex = assertThrows(CIFSException.class, () -> trace.connectWrapException(loc)); assertTrue(ex.getMessage() != null && ex.getMessage().contains("Failed to connect to server"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskRunner.kt
if (minDelayNanos < coordinatorWakeUpAt - now) { backend.coordinatorNotify(this@TaskRunner) } return null } // No other thread is coordinating. Become the coordinator! else -> { coordinatorWaiting = true coordinatorWakeUpAt = now + minDelayNanos try { backend.coordinatorWait(this@TaskRunner, minDelayNanos)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:30:11 UTC 2025 - 10.4K bytes - Viewed (0) -
docs/en/docs/help-fastapi.md
can more easily get a good answer, or even solve the problem yourself even before asking. And in GitHub I can make sure I always answer everything, even if it takes some time. I can't personally do that with the chat systems. 😅 Conversations in the chat systems are also not as easily searchable as in GitHub, so questions and answers might get lost in the conversation. And only the ones in GitHub count to become a [FastAPI Expert](fastapi-people.md#fastapi-experts){.internal-link target=_blank},...
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComQueryInformationResponseTest.java
byte[] buffer = new byte[256]; long overflowSize = 0xFFFFFFFFL; // This will become -1 as signed int SMBUtil.writeInt2(0, buffer, 0); SMBUtil.writeUTime(0, buffer, 2); SMBUtil.writeInt4(overflowSize, buffer, 6); response.readParameterWordsWireFormat(buffer, 0); // 0xFFFFFFFF becomes -1 when interpreted as signed int assertEquals(-1L, response.getSize()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0)