- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 594 for follow (0.03 sec)
-
src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java
} } @Test @DisplayName("Keep-alive packets are transparently skipped") void keepAlivePacketsAreSkipped() throws IOException { // Create stream with keep-alive followed by message byte[] data = new byte[] { 30, 60 }; byte[] fullData = concat(keepAliveHeader(), messageHeader(2), data); InputStream in = new ByteArrayInputStream(fullData);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java
testBlock.batchLevel = 0; // Override getBatchLimit to allow batching testBlock = new TestAndXServerMessageBlock(mockConfig, (byte) 0x25, andxBlock) { @Override protected int getBatchLimit(Configuration cfg, byte cmd) { return 1; // Allow one batched message } }; byte[] buffer = new byte[1024];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/SmbSessionTest.java
assertEquals(void.class, closeMethod.getReturnType()); }, "close() method should be properly defined"); } @Test @DisplayName("Should allow close method to be called multiple times") void shouldAllowMultipleCloseCallsOnMock() throws Exception { SmbSession mockSession = mock(SmbSession.class); doNothing().when(mockSession).close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java
return paramWordsRead; } @Override int readBytesWireFormat(byte[] buffer, int bufferIndex) { bytesRead = 20; return bytesRead; } // Allow tests to control batching limit @Override int getBatchLimit(byte command) { return customBatchLimit != null ? customBatchLimit : 0; } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EmptyContiguousSet.java
import java.util.Set; import org.jspecify.annotations.Nullable; /** * An empty contiguous set. * * @author Gregory Kick */ @GwtCompatible @SuppressWarnings("rawtypes") // allow ungenerified Comparable types final class EmptyContiguousSet<C extends Comparable> extends ContiguousSet<C> { EmptyContiguousSet(DiscreteDomain<C> domain) { super(domain); } @Override public C first() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java
*/ @Override boolean isOffline(); /** * Enables/disables network access to remote repositories. * * @param offline {@code true} to disable remote access, {@code false} to allow network access. * @return This request, never {@code null}. */ @Override MetadataResolutionRequest setOffline(boolean offline); /** * Gets the artifact to resolve metadata for. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.9K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java
RunnableExecutorPair list; synchronized (this) { if (executed) { return; } executed = true; list = runnables; runnables = null; // allow GC to free listeners even if this stays around for a while. } while (list != null) { executeListener(list.runnable, list.executor); list = list.next; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/NetbiosNameTest.java
verify(mockNetbiosName).getNameType(); } @Test @DisplayName("Should handle interface method contracts") void testMethodContracts() { // The interface should allow for various implementations // Test that methods can return any valid values // Names can be any string when(mockNetbiosName.getName()).thenReturn("ANYNAME");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java
import jakarta.validation.constraints.Max; import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Size; /** * Form class for creating data store configurations. * Data configs allow administrators to set up crawling of various data sources * including databases, CSV files, and other structured data sources. */ public class CreateForm { /** * Creates a new CreateForm instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/ForwardingNetwork.java
* limitations under the License. */ package com.google.common.graph; import java.util.Set; import org.jspecify.annotations.Nullable; /** * A class to allow {@link Network} implementations to be backed by a provided delegate. This is not * currently planned to be released as a general-purpose forwarding class. * * @author James Sexton * @author Joshua O'Madadhain */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.4K bytes - Viewed (0)