Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 386 for retrieve (0.08 sec)

  1. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        protected Boolean cookieSecure;
    
        /** Whether the user identification cookie should be HTTP-only */
        protected boolean httpOnly = true;
    
        /**
         * Retrieves the user code for the current request.
         * The user code is used to uniquely identify users across sessions and requests.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java

    import jcifs.internal.dtyp.SecurityDescriptor;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * Response for SMB1 NT Transaction security descriptor query.
     *
     * This response contains the Windows security descriptor retrieved
     * from the server, including access control information.
     */
    public class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse {
    
        private SecurityDescriptor securityDescriptor;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java

        //                                                                      Search Execute
        //                                                                      ==============
    
        /**
         * Retrieves the list of installed plugins.
         *
         * @return JSON response containing installed plugin list
         */
        // GET /api/admin/plugin/installed
        @Execute
        public JsonResponse<ApiResult> get$installed() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/ntlmssp/av/AvTargetNameTest.java

            AvTargetName avTargetName = new AvTargetName(targetName);
    
            // Verify that getTargetName returns the original string
            assertEquals(targetName, avTargetName.getTargetName(), "Retrieved target name should match the original string");
        }
    
        /**
         * Test getTargetName() method with raw bytes input.
         * Verifies that the correct string is reconstructed from raw UTF-16LE bytes.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Authenticator.kt

     * both.
     *
     * Applications may configure OkHttp with an authenticator for origin servers, or proxy servers,
     * or both.
     *
     * ## Authentication Retries
     *
     * If your authentication may be flaky and requires retries you should apply some policy
     * to limit the retries by the class of errors and number of attempts.  To get the number of
     * attempts to the current point use this function.
     *
     * ```java
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java

        //                                                                      ==============
    
        // GET /api/admin/failureurl/logs
        // PUT /api/admin/failureurl/logs
        /**
         * Retrieves failure URL logs with pagination.
         *
         * @param body the search criteria
         * @return JSON response containing the failure URL logs
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultResolutionErrorHandler.java

            // Metadata cannot be found
    
            if (result.hasMetadataResolutionExceptions()) {
                throw result.getMetadataResolutionException(0);
            }
    
            // Metadata cannot be retrieved
    
            // Cyclic Dependency Error
    
            if (result.hasCircularDependencyExceptions()) {
                throw result.getCircularDependencyException(0);
            }
    
            // Version Range Violation
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         * Used to access configuration values for pagination, limits, and other settings.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of crawling information records based on the provided pager criteria.
         * The results are ordered by creation time in descending order and the pager is updated with
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java

        public ApiAdminDictAction() {
            super();
        }
    
        /** Dictionary manager for handling dictionary file operations */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /**
         * Retrieves all available dictionary files.
         *
         * @return JSON response containing list of dictionary files
         */
        // GET /api/admin/dict
        @Execute
        public JsonResponse<ApiResult> get$index() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTreeConnection.java

            final String fullPath = "\\" + loc.getServer() + "\\" + loc.getShare() + loc.getUNCPath();
            final int maxRetries = this.ctx.getConfig().getMaxRequestRetries();
            for (int retries = 1; retries <= maxRetries; retries++) {
    
                if (rpath != null) {
                    rpath.setFullUNCPath(null, null, fullPath);
                }
    
                try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
Back to top