- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for retrievable (0.1 sec)
-
src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java
assertEquals("org.apache.lucene.queryparser.classic.ParseException: " + errorMessage, queryParseException.getMessage()); } public void test_getCause() { // Test that the cause is properly set and retrievable ParseException parseException = new ParseException("Query parsing failed"); QueryParseException queryParseException = new QueryParseException(parseException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SMBSignatureValidationExceptionTest.java
} else { assertEquals(msg, ex.getMessage(), "Message should be stored as provided"); } assertSame(cause, ex.getCause(), "Cause should be stored and retrievable"); assertSame(cause, ex.getRootCause(), "Deprecated getRootCause should match getCause"); assertEquals(NtStatus.NT_STATUS_UNSUCCESSFUL, ex.getNtStatus(), "Status should default to unsuccessful for message+cause ctor");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbExceptionTest.java
assertNotNull(exception.getMessage()); assertTrue(exception.getMessage().length() > 0); } @Test @DisplayName("Should check if exception is retriable") void testRetriableExceptions() { // Test non-retriable errors SmbException accessDenied = new SmbException(NtStatus.NT_STATUS_ACCESS_DENIED, false); // Note: isRetriable() method does not exist in SmbException
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportInternalTest.java
// Null when(transport.getServerEncryptionKey()).thenReturn(null); assertNull(transport.getServerEncryptionKey()); } // Happy path: session retrieval by context @Test @DisplayName("getSmbSession(ctx) returns a session and verifies argument") void getSmbSession_byContext() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareGetInfo.java
*/ package jcifs.smb1.dcerpc.msrpc; import java.io.IOException; import jcifs.smb1.smb1.ACE; import jcifs.smb1.smb1.SecurityDescriptor; /** * MS-RPC share information retrieval operation. * * This class implements the Server Service (SRVSVC) ShareGetInfo operation * for retrieving detailed information about a network share, including * security descriptors. */
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/nt/NtTransQuerySecurityDesc.java
import jcifs.Configuration; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * SMB1 NT Transaction subcommand for querying security descriptors. * * This transaction allows retrieval of Windows security descriptors * which contain access control information for files and directories. */ public class NtTransQuerySecurityDesc extends SmbComNtTransaction { int fid; int securityInformation;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
assertTrue(ssoManager.available()); // Verify login credential retrieval LoginCredential credential = ssoManager.getLoginCredential(); assertNotNull(credential); assertEquals("samluser", ((TestLoginCredential) credential).username); // Verify response retrieval ActionResponse metadataResponse = ssoManager.getResponse(SsoResponseType.METADATA);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/BufferCacheImplTest.java
} // Capacity behavior: when full, additional releases are dropped; only cached buffers are returned @Test @DisplayName("Cache capacity respected: extra releases dropped; retrieval order by first free slot") void cacheCapacityAndRetrievalOrder() { BufferCacheImpl impl = new BufferCacheImpl(2, 3); byte[] a = new byte[1]; byte[] c = new byte[2];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
} @Override public void tearDown() throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(); } // Test basic property retrieval public void test_get_basicProperty() { // Test getting a property from the config String value = fessConfig.get("domain.title"); assertEquals("Test Fess", value);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbFileTest.java
} } @Nested class AttributeAndStateTests { @Test public void testGetTypeForFile() throws Exception { // Mocking underlying connection and info retrieval is complex. // This test focuses on the logic based on the URL structure. SmbFile file = new SmbFile("smb1://server/share/file.txt");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0)