Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for similares (0.05 sec)

  1. src/main/resources/fess_label_es.properties

    labels.menu_storage=Almacenamiento
    labels.sidebar.menu=Menú
    labels.footer.copyright=&copy;2024 <a href="https://github.com/codelibs">Proyecto CodeLibs</a>.
    labels.search=Buscar
    labels.similar_doc_result_status=Mostrando resultados similares.
    labels.search_result_status=Resultados de búsqueda para <b>{0}</b><span class="br-phone"></span> <b>{2}</b> - <b>{3}</b> de <b>{1}</b>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/FluentIterable.java

       *
       * <p><b>{@code Stream} equivalent:</b> use {@code stream.collect(ImmutableMap.toImmutableMap(k ->
       * k, valueFunction))}. {@code ImmutableMap.copyOf(stream.collect(Collectors.toMap(k -> k,
       * valueFunction)))} behaves similarly, but may not preserve the order of entries.
       *
       * @throws NullPointerException if any element of this iterable is {@code null}, or if {@code
       *     valueFunction} produces {@code null} for any key
       * @since 14.0
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMaker.java

     *     .weakKeys()
     *     .makeMap();
     * }
     *
     * <p>These features are all optional; {@code new MapMaker().makeMap()} returns a valid concurrent
     * map that behaves similarly to a {@link ConcurrentHashMap}.
     *
     * <p>The returned map is implemented as a hash table with similar performance characteristics to
     * {@link ConcurrentHashMap}. It supports all optional operations of the {@code ConcurrentMap}
     * interface. It does not permit null keys or values.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

           * AGP: https://github.com/google/guava/issues/7769.
           *
           * My impression is that an AtomicReferenceFieldUpdater in a static field is similarly fast to
           * Unsafe on modern JVMs (if perhaps not quite as fast as VarHandle?). However, I'm not sure
           * exactly what we've benchmarked, and we certainly haven't benchmarked as far back as JDK 8.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/FluentIterable.java

       * corresponding to each key appear in the same order as they are encountered.
       *
       * <p><b>{@code Stream} equivalent:</b> {@code stream.collect(Collectors.groupingBy(keyFunction))}
       * behaves similarly, but returns a mutable {@code Map<K, List<E>>} instead, and may not preserve
       * the order of entries.
       *
       * @param keyFunction the function used to produce the key for each value
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java

        }
    
        // Test hook method when MultiThreadedHttpConnectionManager class is not available
        public void test_hook_classNotFound() {
            // Create a custom hook that simulates class not found scenario
            FessCurtainFinallyHook customHook = new FessCurtainFinallyHook() {
                @Override
                public void hook(final FwAssistantDirector assistantDirector) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

     * handling text normalization, content extraction, and similar document hash encoding/decoding.
     * It also manages document processing requests and integrates with the crawler system.
     *
     */
    public class DocumentHelper {
        private static final Logger logger = LogManager.getLogger(DocumentHelper.class);
    
        /** Prefix used for encoded similar document hashes */
        protected static final String SIMILAR_DOC_HASH_PREFIX = "$";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * When enabled, users must authenticate before performing searches.
         */
        @Size(max = 10)
        public String loginRequired;
    
        /**
         * Enable or disable result collapsing for similar documents.
         * When enabled, similar search results are grouped together.
         */
        @Size(max = 10)
        public String resultCollapsed;
    
        /**
         * Enable or disable display of login link in the search interface.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/EditForm.java

     * This form extends CreateForm to include fields necessary for updating existing synonym entries.
     * Synonyms are used to expand search queries by including terms with similar meanings.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       * the discussion in the {@link #addListener} documentation. All its warnings about heavyweight
       * listeners are also applicable to heavyweight functions passed to this method.
       *
       * <p>This method is similar to {@link java.util.concurrent.CompletableFuture#exceptionally}. It
       * can also serve some of the use cases of {@link java.util.concurrent.CompletableFuture#handle}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.7K bytes
    - Viewed (0)
Back to top