Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for store2 (0.04 sec)

  1. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

        }
    
        // Test multiple data store registration
        public void test_multipleDataStores() {
            TestDataStore dataStore1 = new TestDataStore("Store1");
            TestDataStore2 dataStore2 = new TestDataStore2("Store2");
    
            dataStoreFactory.add("store1", dataStore1);
            dataStoreFactory.add("store2", dataStore2);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                return sessionId.substring(0, idx);
            }
            return sessionId;
        }
    
        /**
         * Stores crawling information and parameters for the specified session.
         * Creates a new crawling info record if none exists or if create flag is true.
         * Also stores any accumulated information parameters and clears the info map.
         *
         * @param sessionId the session ID for the crawling information
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                        }
    
                        if (!docMap.containsKey(Constants.SCORE)) {
                            final float score = hit.getScore();
                            if (Float.isFinite(score)) {
                                docMap.put(Constants.SCORE, score);
                            }
                        }
    
                        docMap.put(fessConfig.getIndexFieldId(), hit.getId());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            // Test store method
            DataStoreParams params = new DataStoreParams();
            Map<String, Object> data = new HashMap<>();
            data.put("key1", "value1");
            callback.store(params, data);
    
            assertEquals(1L, callback.getDocumentSize());
            assertEquals(100L, callback.getExecuteTime());
    
            // Test multiple stores
            callback.store(params, data);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                    updateUserSessionId(userCode);
                }
                return userCode;
            }).orElse(null);
        }
    
        /**
         * Extracts the user code from the user bean stored in the session.
         * This method retrieves the authenticated user information and creates an encrypted user code.
         *
         * @param request the HTTP servlet request
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/LinkedListMultimap.java

      public boolean containsValue(@Nullable Object value) {
        return values().contains(value);
      }
    
      // Modification Operations
    
      /**
       * Stores a key-value pair in the multimap.
       *
       * @param key key to store in the multimap
       * @param value value to store in the multimap
       * @return {@code true} always
       */
      @CanIgnoreReturnValue
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            }
    
        }
    
        /**
         * Inner thread class for executing data store crawling operations.
         * Each thread handles crawling for a single data configuration,
         * processing documents and updating the search index.
         *
         * <p>The thread manages:</p>
         * <ul>
         *   <li>Data store initialization and document processing</li>
         *   <li>Index update operations through callbacks</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/ProtwordsService.java

            return getProtwordsFile(dictId).map(file -> file.get(id).get());
        }
    
        /**
         * Stores a protected words item (insert or update).
         * @param dictId the dictionary ID
         * @param protwordsItem the item to store
         */
        public void store(final String dictId, final ProtwordsItem protwordsItem) {
            getProtwordsFile(dictId).ifPresent(file -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

        }
    
        /**
         * Stores a character mapping item in the specified dictionary.
         * <p>
         * This method performs either an insert operation (for new items with ID 0)
         * or an update operation (for existing items with non-zero ID) depending on
         * the item's current state.
         * </p>
         *
         * @param dictId the dictionary ID to store the character mapping item in
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

            return getStopwordsFile(dictId).map(file -> file.get(id).get());
        }
    
        /**
         * Stores a stopword item in the specified dictionary.
         *
         * @param dictId        The ID of the dictionary.
         * @param stopwordsItem The stopword item to store.
         */
        public void store(final String dictId, final StopwordsItem stopwordsItem) {
            getStopwordsFile(dictId).ifPresent(file -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top