Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for danish (0.05 sec)

  1. src/main/resources/fess_indices/fess.json

              "type":       "keyword_marker",
              "keywords_path": "${fess.dictionary.path}da/protwords.txt"
            },
            "danish_stemmer": {
              "type":       "stemmer",
              "language":   "danish"
            },
            "danish_override": {
              "type":       "stemmer_override",
              "rules_path": "${fess.dictionary.path}da/stemmer_override.txt"
            },
            "dutch_stop": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jun 06 14:17:42 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_pl.properties

    labels.crawling_info_DataCrawlExecTime=Czas wykonania indeksowania (Magazyn danych)
    labels.crawling_info_DataCrawlStartTime=Czas rozpoczęcia indeksowania (Magazyn danych)
    labels.crawling_info_DataCrawlEndTime=Czas zakończenia indeksowania (Magazyn danych)
    labels.crawling_info_DataIndexExecTime=Czas wykonania indeksowania (Magazyn danych)
    labels.crawling_info_DataIndexSize=Rozmiar indeksu (Magazyn danych)
    labels.webauth_configuration=Uwierzytelnianie web
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_pl.properties

    errors.crud_failed_to_create_instance = Nie można utworzyć nowych danych.
    errors.crud_failed_to_create_crud_table = Nie można utworzyć nowych danych. ({0})
    errors.crud_failed_to_update_crud_table=Nie można zaktualizować danych. ({0})
    errors.crud_failed_to_delete_crud_table=Nie można usunąć danych. ({0})
    errors.crud_could_not_find_crud_table = Nie znaleziono danych {0}.
    errors.could_not_find_backup_index=Nie znaleziono indeksu kopii zapasowej.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

      }
    
      /**
       * Returns a future that delegates to this future but will finish early (via a {@link
       * TimeoutException} wrapped in an {@link ExecutionException}) if the specified timeout expires.
       * If the timeout expires, not only will the output future finish, but also the input future
       * ({@code this}) will be cancelled and interrupted.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

        //                                                                              Finish
        //                                                                              ======
        @Override
        public void finish() {
            rollback();
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_fr.properties

    labels.facet_timestamp_title=Heure
    labels.facet_timestamp_1day=Dans les 24 heures
    labels.facet_timestamp_1week=Dans la semaine
    labels.facet_timestamp_1month=Dans le mois
    labels.facet_timestamp_1year=Dans l'année
    labels.facet_timestamp_3month=Dans les 3 mois
    labels.facet_timestamp_6month=Dans les 6 mois
    labels.facet_timestamp_2year=Dans les 2 ans
    labels.facet_timestamp_3year=Dans les 3 ans
    labels.facet_contentLength_title=Taille
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        boolean lockAcquired = tryLockUninterruptibly(lock, 500, MILLISECONDS);
    
        assertFalse(lockAcquired);
        assertAtLeastTimePassed(stopwatch, 500);
        assertNotInterrupted();
    
        // finish locking thread
        lockThread.interrupt();
      }
    
      public void testTryLockTimeoutNotExceeded() {
        Stopwatch stopwatch = Stopwatch.createStarted();
        Lock lock = new ReentrantLock();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ComparisonChain.java

     * even when the result of the comparison is already known from previous {@code .compare} calls.
     * That can be expensive.
     *
     * @author Mark Davis
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @GwtCompatible
    public abstract class ComparisonChain {
      private ComparisonChain() {}
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_fr.properties

    errors.design_file_is_unsupported_type = Ce type de fichier n'est pas pris en charge.
    errors.failed_to_create_crawling_config_at_wizard = Échec de la création d'une configuration d'exploration dans un assistant.
    errors.design_editor_disabled = Cette fonctionnalité est désactivée.
    errors.not_found_on_file_system = Non trouvé. Cause : {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/QueuesTest.java

      @Override
      public void setUp() {
        threadPool = newCachedThreadPool();
      }
    
      @Override
      public void tearDown() throws InterruptedException {
        threadPool.shutdown();
        assertTrue("Some worker didn't finish in time", threadPool.awaitTermination(10, SECONDS));
      }
    
      private static <T> int drain(
          BlockingQueue<T> q,
          Collection<? super T> buffer,
          int maxElements,
          long timeout,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top