- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 4,194 for voir (0.02 seconds)
-
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
@Mock private CommonServerMessageBlock serverMessageBlock; @Mock private Response response; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test @DisplayName("Test isValid returns true for valid negotiation") void testIsValidReturnsTrue() { // Arrange when(negotiationResponse.isValid(cifsContext, negotiationRequest)).thenReturn(true);Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.6K bytes - Click Count (0) -
src/test/java/jcifs/util/transport/TransportTest.java
} // Test control methods public void setState(int state) { this.state = state; } public void setPeekedKey(Long key) { this.peekedKey = key; } public void setSendException(IOException e) { this.sendException = e; } public void setRecvException(IOException e) { this.recvException = e;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
void testSmb2HeaderLength() { assertEquals(64, Smb2Constants.SMB2_HEADER_LENGTH, "SMB2 header must be exactly 64 bytes"); } } @Nested @DisplayName("Negotiation Constants") class NegotiationConstants { @Test @DisplayName("Signing enabled flag should be 0x0001") void testSigningEnabledFlag() {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
} public void setBusinessCategory(String value) { registerModifiedProperty("businessCategory"); this.businessCategory = value; } public String getCarLicense() { checkSpecifiedProperty("carLicense"); return convertEmptyToNull(carLicense); } public void setCarLicense(String value) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 22.9K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComOpenAndXResponseTest.java
assertEquals(0, response.serverFid); } @Test void testSetFid() { response.fid = 123; assertEquals(123, response.fid); } @Test void testSetFileAttributes() { response.fileAttributes = 0x20; // ATTR_ARCHIVE assertEquals(0x20, response.fileAttributes); } @Test void testSetLastWriteTime() { long time = System.currentTimeMillis();
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.2K bytes - Click Count (0) -
src/test/java/jcifs/SidResolverTest.java
private SID mockDomainSid; private String testServerName; private SID[] testSids; @BeforeEach void setUp() { testServerName = "test-server.domain.com"; testSids = new SID[] { mockSid1, mockSid2, mockSid3 }; } // Test resolveSids with array @Test void testResolveSids_Success() throws CIFSException {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 15.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
} private static void checkSha1(String expected, byte[] key, String data) { checkSha1(expected, key, data.getBytes(UTF_8)); } private static void checkSha1(String expected, byte[] key, byte[] data) { checkHmac(expected, Hashing.hmacSha1(key), data); } private static void checkMd5(String expected, byte[] key, String data) {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 27 16:19:35 GMT 2024 - 13.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java
@Test @DisplayName("Should have correct SMB_INFO_ALLOCATION constant value") void testSmbInfoAllocationConstant() { assertEquals((byte) -1, FileSystemInformation.SMB_INFO_ALLOCATION); } @Test @DisplayName("Should have correct FS_SIZE_INFO constant value") void testFsSizeInfoConstant() { assertEquals((byte) 3, FileSystemInformation.FS_SIZE_INFO); }Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/graph/AbstractGraphTest.java
*/ @Test public abstract void incidentEdges_checkReturnedSetMutability(); @Test public void nodes_oneNode() { addNode(N1); assertThat(graph.nodes()).containsExactly(N1); } @Test public void nodes_noNodes() { assertThat(graph.nodes()).isEmpty(); } @Test public void adjacentNodes_oneEdge() { putEdge(N1, N2);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 07 15:57:03 GMT 2025 - 17.3K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java
private String description; public void setModelVersion(String modelVersion) { this.modelVersion = modelVersion; } public void setGroupId(String groupId) { this.groupId = groupId; } public void setScm(Scm scm) { this.scm = scm; } public void addDependency(Dependency dependency) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 16.9K bytes - Click Count (0)