Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Ginnish (0.25 sec)

  1. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

            "keywords":   ["hello"]
          },
          "finnish_stop": {
            "type":       "stop",
            "stopwords":  "_finnish_"
          },
          "finnish_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["Hei"]
          },
          "finnish_stemmer": {
            "type":       "stemmer",
            "language":   "finnish"
          },
          "french_elision": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

            "keywords":   ["hello"]
          },
          "finnish_stop": {
            "type":       "stop",
            "stopwords":  "_finnish_"
          },
          "finnish_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["Hei"]
          },
          "finnish_stemmer": {
            "type":       "stemmer",
            "language":   "finnish"
          },
          "french_elision": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  3. src/main/resources/suggest_indices/suggest_analyzer.json

            "keywords":   ["hello"]
          },
          "finnish_stop": {
            "type":       "stop",
            "stopwords":  "_finnish_"
          },
          "finnish_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["Hei"]
          },
          "finnish_stemmer": {
            "type":       "stemmer",
            "language":   "finnish"
          },
          "french_elision": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/jquery-3.6.3.min.js

    t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||E.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=E.timers,o=n?n.length:0;for(t.finish=!0,E.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),E.each(["toggle","show","hide"],function(e,r){var i=E.fn[r...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 87.8K bytes
    - Viewed (3)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // We need an executor that will not block.
                // We can't use work stealing, as we are building a graph
                // and this could lead to cycles where a thread waits for
                // a task to finish, then execute another one which waits
                // for the initial task...
                // In order to work around that problem, we override the
                // invokeAll method, so that whenever the method is called,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  6. src/main/webapp/js/jquery-3.6.3.min.js

    t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||E.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=E.timers,o=n?n.length:0;for(t.finish=!0,E.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),E.each(["toggle","show","hide"],function(e,r){var i=E.fn[r...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 87.8K bytes
    - Viewed (5)
  7. android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        // give the third get a chance to run; it is okay for this to be racy
        // as the end result should be the same either way
        fourthSignal.await();
        Thread.yield();
    
        // let computation finish
        computeSignal.countDown();
        doneSignal.await();
    
        assertTrue(callCount.get() == 1);
        assertEquals("barfoo", result.get(0));
        assertEquals("barfoo", result.get(1));
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 86.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        // give the third get a chance to run; it is okay for this to be racy
        // as the end result should be the same either way
        fourthSignal.await();
        Thread.yield();
    
        // let computation finish
        computeSignal.countDown();
        doneSignal.await();
    
        assertTrue(callCount.get() == 1);
        assertEquals("barfoo", result.get(0));
        assertEquals("barfoo", result.get(1));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 86.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheBuilder.java

       * computes or retrieves it using the supplied {@code CacheLoader}. If another thread is currently
       * loading the value for this key, simply waits for that thread to finish and returns its loaded
       * value. Note that multiple threads can concurrently load values for distinct keys.
       *
       * <p>This method does not alter the state of this {@code CacheBuilder} instance, so it can be
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

          Executor executor) {
        return AbstractCatchingFuture.create(input, exceptionType, fallback, executor);
      }
    
      /**
       * Returns a future that delegates to another but will finish early (via a {@link
       * TimeoutException} wrapped in an {@link ExecutionException}) if the specified duration expires.
       *
       * <p>The delegate future is interrupted and cancelled if it times out.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
Back to top