Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 303 for retrieval (0.63 sec)

  1. guava/src/com/google/common/collect/FluentIterable.java

     * <ul>
     *   <li>chaining methods which return a new {@code FluentIterable} based in some way on the
     *       contents of the current one (for example {@link #transform})
     *   <li>element extraction methods which facilitate the retrieval of certain elements (for example
     *       {@link #last})
     *   <li>query methods which answer questions about the {@code FluentIterable}'s contents (for
     *       example {@link #anyMatch})
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        }
    
        /**
         * Creates a stream response for document content delivery.
         * Handles content retrieval and streaming to the client.
         *
         * @param doc the document data map
         * @return the stream response containing document content
         * @throws FessSystemException if content cannot be retrieved
         */
        public StreamResponse asContentResponse(final Map<String, Object> doc) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NameServiceClient.java

        NetbiosAddress getNbtByName(String host) throws UnknownHostException;
    
        /**
         * Retrieves the node status information for the specified NetBIOS address.
         *
         * @param nbtAddress the NetBIOS address to query
         * @return the node status responses
         * @throws UnknownHostException if the node status cannot be retrieved
         */
        NetbiosAddress[] getNodeStatus(NetbiosAddress nbtAddress) throws UnknownHostException;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

            params.put(key, value);
        }
    
        /**
         * Retrieves a parameter value by key.
         *
         * @param key the parameter key to look up
         * @return the parameter value if found, null otherwise
         */
        public Object get(final String key) {
            return params.get(key);
        }
    
        /**
         * Retrieves a parameter value as a String.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            }
            return configId.substring(1);
        }
    
        /**
         * Retrieves a crawling configuration by its config ID.
         * This method uses caching to improve performance and automatically determines
         * the configuration type and delegates to the appropriate service.
         *
         * @param configId the configuration ID to retrieve
         * @return the CrawlingConfig object or null if not found or on error
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

            return relatedQueryList;
        }
    
        /**
         * Retrieves a specific related query by its unique identifier.
         *
         * @param id the unique identifier of the related query to retrieve
         * @return an OptionalEntity containing the RelatedQuery if found, or empty if not found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/util/SecureKeyManagerTest.java

            String sessionId = "test-session-1";
            keyManager.storeSessionKey(sessionId, testKey, "AES");
    
            SecretKey retrieved = keyManager.getSessionKey(sessionId);
            assertNotNull(retrieved, "Should retrieve stored key");
            assertArrayEquals(testKey, retrieved.getEncoded(), "Retrieved key should match");
        }
    
        @Test
        public void testGetRawKey() {
            String sessionId = "test-session-2";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

            } catch (final IOException e) {
                throw new DictionaryException("Failed to access dictionaries", e);
            }
        }
    
        /**
         * Retrieves a specific dictionary file by its ID.
         *
         * @param id the unique identifier of the dictionary file to retrieve
         * @return an OptionalEntity containing the dictionary file if found, empty otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

                return (List<StemmerOverrideItem>) stemmerOvberrideList;
            }).orElse(Collections.emptyList());
        }
    
        /**
         * Retrieves the stemmer override dictionary file by ID.
         *
         * @param dictId The ID of the stemmer override dictionary to retrieve
         * @return An OptionalEntity containing the stemmer override file if found, empty otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NbtAddress.java

         * address, isPermanent, isBeingDeleted, ...etc. This information can only
         * be retrieved with the Node Status request.
         *
         * The degree of state that an NbtAddress has is dependant on how it was
         * created and what is required of it. The second degree of state is the
         * most common. This is the state information that would be retrieved from
         * WINS for example. Natrually it is not practical for every NbtAddress
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
Back to top