Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for danish (0.03 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_indices/_aws/fess.json

            "danish_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Hej", "verden", "Søg"]
            },
            "danish_stemmer": {
              "type":       "stemmer",
              "language":   "danish"
            },
            "danish_override": {
              "type":       "stemmer_override",
              "rules": []
            },
            "dutch_stop": {
              "type":       "stop",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 117.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

       * to calling it exactly once.
       *
       * @since 10.0 (present in 1.0 as {@code run})
       */
      public void execute() {
        // Lock while we update our state so the add method above will finish adding any listeners
        // before we start to run them.
        RunnableExecutorPair list;
        synchronized (this) {
          if (executed) {
            return;
          }
          executed = true;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ExecutionList.java

       * to calling it exactly once.
       *
       * @since 10.0 (present in 1.0 as {@code run})
       */
      public void execute() {
        // Lock while we update our state so the add method above will finish adding any listeners
        // before we start to run them.
        RunnableExecutorPair list;
        synchronized (this) {
          if (executed) {
            return;
          }
          executed = true;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/math/LinearTransformation.java

       * finite. Call either {@link LinearTransformationBuilder#and} or {@link
       * LinearTransformationBuilder#withSlope} on the returned object to finish building the instance.
       */
      public static LinearTransformationBuilder mapping(double x1, double y1) {
        checkArgument(isFinite(x1) && isFinite(y1));
        return new LinearTransformationBuilder(x1, y1);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/ListenableFutureTaskTest.java

        // the run latch.
        exec.execute(task);
        runLatch.await();
        assertEquals(1, listenerLatch.getCount());
        assertFalse(task.isDone());
        assertFalse(task.isCancelled());
    
        // Finish the task by unblocking the task latch.  Then wait for the
        // listener to be called by blocking on the listener latch.
        taskLatch.countDown();
        assertEquals(25, task.get().intValue());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/SipHashFunction.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    /*
     * SipHash-c-d was designed by Jean-Philippe Aumasson and Daniel J. Bernstein and is described in
     * "SipHash: a fast short-input PRF" (available at https://131002.net/siphash/siphash.pdf).
     */
    
    package com.google.common.hash;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/JdkFutureAdapters.java

        }
        return new ListenableFutureAdapter<>(future, executor);
      }
    
      /**
       * An adapter to turn a {@link Future} into a {@link ListenableFuture}. This will wait on the
       * future to finish, and when it completes, run the listeners. This implementation will wait on
       * the source future indefinitely, so if the source future never completes, the adapter will never
       * complete either.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top