- Sort Score
- Result 10 results
- Languages All
Results 2261 - 2270 of 3,706 for private (0.04 sec)
-
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java
* This provides a fallback when real RDMA hardware is not available. */ public class TcpRdmaConnection extends RdmaConnection { private static final Logger log = LoggerFactory.getLogger(TcpRdmaConnection.class); private SocketChannel socketChannel; private Socket socket; /** * Create new TCP RDMA connection * * @param remote remote socket address
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponseTest.java
import jcifs.internal.SMBProtocolDecodingException; /** * Test class for TransCallNamedPipeResponse */ class TransCallNamedPipeResponseTest { @Mock private Configuration mockConfig; private TransCallNamedPipeResponse response; private byte[] outputBuffer; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); outputBuffer = new byte[1024];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableCollection.java
* {@code hashCode} implementation, it should cache it itself. * </ul> * * <h4>Example usage</h4> * * {@snippet : * class Foo { * private static final ImmutableSet<String> RESERVED_CODES = * ImmutableSet.of("AZ", "CQ", "ZX"); * * private final ImmutableSet<String> codes; * * public Foo(Iterable<String> codes) { * this.codes = ImmutableSet.copyOf(codes);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapReplaceAllTester.java
@IgnoreJRERequirement // We opt into library desugaring for our tests. public class MapReplaceAllTester<K, V> extends AbstractMapTester<K, V> { private SampleElements<K> keys() { return new SampleElements<>(k0(), k1(), k2(), k3(), k4()); } private SampleElements<V> values() { return new SampleElements<>(v0(), v1(), v2(), v3(), v4()); } @MapFeature.Require(SUPPORTS_PUT)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContext.java
/** * Context type */ public static final int NEGO_CTX_PREAUTH_TYPE = 0x1; /** * SHA-512 */ public static final int HASH_ALGO_SHA512 = 0x1; private int[] hashAlgos; private byte[] salt; /** * Constructs a preauth integrity negotiate context with the specified parameters. * * @param config the SMB configuration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
import org.dbflute.cbean.result.PagingResultBean; import jakarta.servlet.ServletContext; public class CrawlJobTest extends UnitFessTestCase { private CrawlJob crawlJob; // Helper method to compare arrays private void assertArrayEquals(String[] expected, String[] actual) { if (expected == null && actual == null) { return; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.fess.unit.UnitFessTestCase; public class HtmlTagBasedGeneratorTest extends UnitFessTestCase { private static final Logger logger = LogManager.getLogger(HtmlTagBasedGeneratorTest.class); public void test_saveImage() throws Exception { // Note: This test requires FessConfig from ComponentUtil
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/ShortConversionUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChange.java
* such as file creation, modification, deletion, and attribute changes. */ public class NtTransNotifyChange extends SmbComNtTransaction { int fid; private final int completionFilter; private final boolean watchTree; /** * Constructs an NT transaction for change notification monitoring. * @param config the configuration context * @param fid the file identifier to monitor
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComNegotiateTest.java
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; /** * Tests for the SmbComNegotiate class. */ class SmbComNegotiateTest { private SmbComNegotiate smbComNegotiate; private static final String DIALECTS = "\u0002NT LM 0.12\u0000"; @BeforeEach void setUp() { // Create a new instance before each test smbComNegotiate = new SmbComNegotiate();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4K bytes - Viewed (0)