- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 396 for retrieve (0.05 sec)
-
src/main/java/jcifs/dcerpc/msrpc/MsrpcShareEnum.java
super("\\\\" + server, 1, new srvsvc.ShareInfoCtr1(), -1, 0, 0); this.ptype = 0; this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; } /** * Returns the share entries retrieved from the enumeration. * * @return an array of FileEntry objects representing the shares */ public FileEntry[] getEntries() { /* * The ShareInfo1 class does not implement the FileEntry
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareEnum.java
super("\\\\" + server, 1, new srvsvc.ShareInfoCtr1(), -1, 0, 0); ptype = 0; flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; } /** * Returns the share entries retrieved from the enumeration. * * @return an array of FileEntry objects representing the shares */ public FileEntry[] getEntries() { /* The ShareInfo1 class does not implement the FileEntry
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/log/ApiAdminLogAction.java
// Search Execute // ============== /** * Retrieves the list of available log files. * * @return JSON response containing log file list */ // GET /api/admin/log/files @Execute public JsonResponse<ApiResult> files() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RoutePlanner.kt
*/ package okhttp3.internal.connection import java.io.IOException import okhttp3.Address import okhttp3.HttpUrl /** * Policy on choosing which connection to use for an exchange and any retries that follow. This uses * the following strategies: * * 1. If the current call already has a connection that can satisfy the request it is used. Using
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelFailoverTest.java
// Should allow retries up to limit assertTrue(state.shouldRetry()); state.incrementRetry(); // Retry 1 assertTrue(state.shouldRetry()); state.incrementRetry(); // Retry 2 assertTrue(state.shouldRetry()); state.incrementRetry(); // Retry 3 assertFalse(state.shouldRetry()); // Max retries reached } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/MIEName.java
*/ package jcifs.smb; import java.util.Objects; import org.bouncycastle.asn1.ASN1ObjectIdentifier; /** * This class is used to parse the name of context initiator and * context acceptor which are retrieved from GSSContext. * * @author Shun * */ class MIEName { private static byte[] TOK_ID = { 04, 01 }; private static int TOK_ID_SIZE = 2; private static int MECH_OID_LEN_SIZE = 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.5K 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/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
* */ public class ApiAdminBackupAction extends FessApiAdminAction { /** * Default constructor. */ public ApiAdminBackupAction() { super(); } /** * Retrieves a list of available backup files. * * @return JSON response with backup file list */ // GET /api/admin/backup/files @Execute public JsonResponse<ApiResult> files() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
cmd/api-utils.go
if strings.ToLower(encodingType) == "url" { return s3URLEncode(name) } return name } // getHandlerName returns the name of the handler function. It takes the type // name as a string to clean up the name retrieved via reflection. This function // only works correctly when the type is present in the cmd package. func getHandlerName(f http.HandlerFunc, cmdType string) string { name := runtime.FuncForPC(reflect.ValueOf(f).Pointer()).Name()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:19:03 UTC 2025 - 2.8K 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)