- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 315 for parentLi (1.07 sec)
-
src/test/java/jcifs/internal/smb2/ServerMessageBlock2RequestTest.java
return 64; // Simulate header writing } @Override public int encode(byte[] dst, int dstIndex) { // We need to override the parent ServerMessageBlock2's encode // to properly simulate setting the length field int start = dstIndex; dstIndex += writeHeaderWireFormat(dst, dstIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
assertEquals(expectedMessage, e.getMessage()); assertNull(e.getCause()); } } public void test_throwAndCatchAsFessSystemException() { // Test catching as parent exception type String type = "BasicAuth"; String message = "Authentication failed"; try { throw new InvalidAccessTokenException(type, message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
* DFS referrals. (E.g. a resource with a DFS root's parent will still point to the DFS root not the share it's actually * located in). * - share + uncpath within it: This is the relevant information for most SMB requests. Both are adjusted by DFS * referrals. Nested resources will inherit the information already resolved by the parent resource. * * Invariant:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0) -
cmd/admin-handlers-idp-ldap.go
if requestorIsDerivedCredential { if requestorParentUser == "" { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errors.New("service accounts cannot be generated for temporary credentials without parent")), r.URL) return } targetUser = requestorParentUser } targetGroups = requestorGroups // Deny if the target user is not LDAP
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 08 02:46:04 UTC 2025 - 19.2K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
``` #### 4.2 Implementation Tasks - [ ] Extend lease implementation for directories - [ ] Implement directory metadata caching - [ ] Add directory change notification integration - [ ] Create parent-child lease relationships - [ ] Implement directory lease break handling - [ ] Add directory enumeration caching #### 4.3 Integration Points - Extend `SmbFile` for directory lease support
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
assertEquals(0, msrpcShareGetInfo.getPtype()); assertEquals(DcerpcConstants.DCERPC_FIRST_FRAG | DcerpcConstants.DCERPC_LAST_FRAG, msrpcShareGetInfo.getFlags()); // Verify parent class initialization assertNotNull(msrpcShareGetInfo.info); assertTrue(msrpcShareGetInfo.info instanceof srvsvc.ShareInfo502); assertEquals(502, msrpcShareGetInfo.level);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
cmd/ftp-server-driver.go
claims[ldapAttribPrefix+attribKey] = attribValue } cred, err := auth.GetNewCredentialsWithMetadata(claims, globalActiveCred.SecretKey) if err != nil { return nil, err } // Set the parent of the temporary access key, this is useful // in obtaining service accounts by this cred. cred.ParentUser = lookupResult.NormDN // Set this value to LDAP groups, LDAP user can be part
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
assertEquals("shared", file.getShare(), "Share should be extracted correctly"); assertNotNull(file.getParent(), "Parent should not be null"); assertTrue(file.getParent().endsWith("/shared/path/"), "Parent path should be correct"); } @Test void testUNCPath() throws Exception { SmbFile file = new SmbFile(baseUrl + "shared/unc.txt", context);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
assertEquals("ROLE_PARENT", childSecured.value()[0]); } // Test method annotation inheritance public void test_methodAnnotationInheritance() throws NoSuchMethodException { // Parent method has annotation Method parentMethod = ParentClass.class.getMethod("parentMethod"); Secured parentSecured = parentMethod.getAnnotation(Secured.class); assertNotNull(parentSecured);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
// Given: Mock message DcerpcMessage mockMessage = mock(DcerpcMessage.class); lenient().when(mockMessage.getResult()).thenReturn(null); // When: Encoding message (calls parent implementation) // Then: Should complete without throwing exception assertDoesNotThrow(() -> handle.encodeMessage(mockMessage, new byte[100])); } } @Nested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0)