Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 386 for retrieve (0.04 sec)

  1. src/main/java/jcifs/util/SecureKeyManager.java

                    log.warn("Failed to store key in KeyStore: {}", e.getMessage());
                }
            }
    
            log.debug("Stored session key for session: {}", sessionId);
        }
    
        /**
         * Retrieve a session key
         *
         * @param sessionId unique session identifier
         * @return the secret key, or null if not found
         */
        public SecretKey getSessionKey(String sessionId) {
            checkNotClosed();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ResourceUtil.java

    import org.lastaflute.web.util.LaServletContextUtil;
    
    import jakarta.servlet.ServletContext;
    
    /**
     * Utility class for accessing various resource paths and files in the Fess application.
     * This class provides methods to retrieve paths for configuration files, templates, dictionaries,
     * thumbnails, plugins, and other resources required by the Fess search engine.
     * It supports both regular deployment and Docker container environments.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  3. mvnw.cmd

           "  exit 1;"^
           "}"^
           "}"
        if ERRORLEVEL 1 goto error
    )
    
    @REM Provide a "standardized" way to retrieve the CLI args that will
    @REM work with both Windows and non-Windows executions.
    set MAVEN_CMD_LINE_ARGS=%*
    
    %MAVEN_JAVA_EXE% ^
      %JVM_CONFIG_MAVEN_PROPS% ^
      %MAVEN_OPTS% ^
      %MAVEN_DEBUG_OPTS% ^
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

         * hashes were used to construct this {@code NtlmPasswordAuthentication}
         * object which will be the case when NTLM HTTP Authentication is
         * used. There is no way to retrieve a users password in plain text unless
         * it is supplied by the user at runtime.
         */
        /**
         * Returns the password in plain text or {@code null} if the raw password
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

            return LocalDateTime.parse(value, formatter).atZone(ZoneId.systemDefault()).withZoneSameInstant(ZoneOffset.UTC).toLocalDateTime();
        }
    
        /**
         * Retrieves a specific search log entry by log type and ID.
         *
         * @param logType The type of log to retrieve (search, click, favorite, userinfo)
         * @param id The ID of the log entry
         * @return Optional entity containing the log entry if found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

            }
    
            throwValidationErrorApi(messages -> messages.addErrorsInvalidQueryUnknown(GLOBAL));
            return null; // ignore
        }
    
        /**
         * Retrieves a specific document by ID.
         *
         * @param id the document ID to retrieve
         * @return JSON response containing the document
         */
        // GET /api/admin/searchlist/doc/{doc_id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        // GET /api/admin/elevateword/{id}
        /**
         * Retrieves a specific elevate word setting by ID.
         *
         * @param id the ID of the elevate word to retrieve
         * @return JSON response containing the elevate word configuration
         */
        @Execute
        public JsonResponse<ApiResult> get$setting(final String id) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                        // will be reported via storeInlocalRepository
                    }
                }
            } else {
                // It's a POM - we don't need to retrieve it first
                file = new File(
                        localRepository.getBasedir(),
                        localRepository.pathOfLocalRepositoryMetadata(metadata, deploymentRepository));
            }
    
            try {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            return getComponent(PROTOCOL_HELPER);
        }
    
        /**
         * Gets a component by its class type.
         * @param <T> The type of the component.
         * @param clazz The class of the component to retrieve.
         * @return The component instance.
         */
        @SuppressWarnings("unchecked")
        public static <T> T getComponent(final Class<T> clazz) {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                }
                return false;
            }).orElse(false);
        }
    
        /**
         * Retrieves the localized label value for the given key from the current request's label map.
         *
         * @param value the label key to retrieve
         * @return the localized label value, or the key itself if not found
         */
        public static String label(final String value) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
Back to top