- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 341 for retrieved (0.11 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
entries[_i].decode(_src); } } } } /** * SAMR EnumerateAliasesInDomain operation for listing aliases in a domain. * This operation retrieves a list of alias accounts from the specified domain. */ public static class SamrEnumerateAliasesInDomain extends DcerpcMessage { @Override public int getOpnum() { return 0x0f;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/builtin/builtin.go
// panicking goroutine. Executing a call to recover inside a deferred // function (but not any function called by it) stops the panicking sequence // by restoring normal execution and retrieves the error value passed to the // call of panic. If recover is called outside the deferred function it will // not stop a panicking sequence. In this case, or when the goroutine is not // panicking, recover returns nil. //
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Dec 30 23:59:23 UTC 2024 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
return pipeIn; } /** * Return the <code>OutputStream</code> used to write * information to this pipe instance. The act of writing data * to this stream will result in response data recieved in the * <code>InputStream</code> associated with this Named Pipe * instance (unless of course it does not elicite a response or the pipe is write-only). * @return the output stream for writing to this pipe
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
/** * Gets the session key from the underlying SMB session for encryption * @return session key of the underlying smb session * @throws CIFSException if unable to retrieve the session key */ public abstract byte[] getSessionKey() throws CIFSException; @Override public String toString() { return this.binding.toString(); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
messages.addErrorsCrudInvalidMode(GLOBAL, String.valueOf(expectedMode), String.valueOf(crudMode)); }, this::asListHtml); } } /** * Retrieves or creates a document entity based on the form data. * * @param form the form containing document information * @return optional entity containing the document data, or empty if not found */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
*/ public DataIndexHelper() { // Default constructor with explicit documentation } /** * Initiates crawling for all configured data stores. * This method retrieves all available data configurations and * starts the crawling process for each one. * * @param sessionId unique identifier for this crawling session */ public void crawl(final String sessionId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
// Assist Logic // ============ /** * Retrieves or creates a WebConfig entity based on the form's CRUD mode. * * @param form the form containing the web config data * @param username the username of the current user
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
} else { throw new IOException("RDMA operation failed after " + (retryCount + 1) + " attempts", lastError); } } /** * Functional interface for RDMA operations that can be retried * * @param <T> the type of result returned by the operation */ @FunctionalInterface public interface RdmaOperation<T> { /** * Execute the RDMA operation *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt
sslSocket.closeQuietly() } } } /** * To make an HTTPS connection over an HTTP proxy, send an unencrypted CONNECT request to create * the proxy connection. This may need to be retried if the proxy requires authorization. */ @Throws(IOException::class) private fun createTunnel(): Request? { var nextRequest = tunnelRequest!!
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
} /** * Returns the user entity based on the provided form data, applying any necessary transformations. * * @param form the form containing user data for retrieval and update * @return optional user entity populated from the form */ public static OptionalEntity<User> getUser(final CreateForm form) { return getEntity(form).map(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.5K bytes - Viewed (0)