Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for executeOn (0.07 sec)

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                final ActionType<Response> action, final Request request) {
            return client.execute(action, request);
        }
    
        /**
         * Executes an action asynchronously with a callback.
         *
         * @param <Request>  the request type
         * @param <Response> the response type
         * @param action     the action to execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

        call.enqueue(callback)
        assertFailsWith<IllegalStateException> {
          call.execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Already Executed")
        }
        assertFailsWith<IllegalStateException> {
          call.enqueue(callback)
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Already Executed")
        }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/popper.min.js.map

          .map(name => ({\n        name,\n        ...this.options.modifiers[name],\n      }))\n      // sort the modifiers by order\n      .sort((a, b) => a.order - b.order);\n\n    // modifiers have the ability to execute arbitrary code when Popper.js get inited\n    // such code is executed in the same order of its modifier\n    // they could add new properties to their options configuration\n    // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!\n    this.modifie...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 120.9K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

        client.newCall(request).execute().use {
          it.body.bytes()
        }
        return client.newCall(request).execute()
      }
    
      private operator fun get(url: HttpUrl): Response {
        val request =
          Request
            .Builder()
            .url(url)
            .build()
        return client.newCall(request).execute()
      }
    
      private fun writeFile(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

                  }
                });
        executor.execute(task);
        return new ClosingFuture<>(task, closeables);
      }
    
      /**
       * Starts a {@link ClosingFuture} pipeline by submitting a callable block to an executor.
       *
       * @throws java.util.concurrent.RejectedExecutionException if the task cannot be scheduled for
       *     execution
       * @since 30.1
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 97.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Hush!  Hush!' said the Rabbit in a low, hurried tone.  He
    looked anxiously over his shoulder as he spoke, and then raised
    himself upon tiptoe, put his mouth close to her ear, and
    whispered `She's under sentence of execution.'
    
      `What for?' said Alice.
    
      `Did you say "What a pity!"?' the Rabbit asked.
    
      `No, I didn't,' said Alice:  `I don't think it's at all a pity.
    I said "What for?"'
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    execute-api.eu-west-1.amazonaws.com
    execute-api.eu-west-2.amazonaws.com
    execute-api.eu-west-3.amazonaws.com
    execute-api.il-central-1.amazonaws.com
    execute-api.me-central-1.amazonaws.com
    execute-api.me-south-1.amazonaws.com
    execute-api.sa-east-1.amazonaws.com
    execute-api.us-east-1.amazonaws.com
    execute-api.us-east-2.amazonaws.com
    execute-api.us-gov-east-1.amazonaws.com
    execute-api.us-gov-west-1.amazonaws.com
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  8. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    execute-api.eu-west-1.amazonaws.com
    execute-api.eu-west-2.amazonaws.com
    execute-api.eu-west-3.amazonaws.com
    execute-api.il-central-1.amazonaws.com
    execute-api.me-central-1.amazonaws.com
    execute-api.me-south-1.amazonaws.com
    execute-api.sa-east-1.amazonaws.com
    execute-api.us-east-1.amazonaws.com
    execute-api.us-east-2.amazonaws.com
    execute-api.us-gov-east-1.amazonaws.com
    execute-api.us-gov-west-1.amazonaws.com
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  9. src/main/webapp/js/bootstrap.min.js.map

    Public\n  show(callback) {\n    if (!this._config.isVisible) {\n      execute(callback)\n      return\n    }\n\n    this._append()\n\n    const element = this._getElement()\n    if (this._config.isAnimated) {\n      reflow(element)\n    }\n\n    element.classList.add(CLASS_NAME_SHOW)\n\n    this._emulateAnimation(() => {\n      execute(callback)\n    })\n  }\n\n  hide(callback) {\n    if (!this._config.isVisible) {\n      execute(callback)\n      return\n    }\n\n    this._getElement().classList.r...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 211.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

                  }
                });
        executor.execute(task);
        return new ClosingFuture<>(task, closeables);
      }
    
      /**
       * Starts a {@link ClosingFuture} pipeline by submitting a callable block to an executor.
       *
       * @throws java.util.concurrent.RejectedExecutionException if the task cannot be scheduled for
       *     execution
       * @since 30.1
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 98.1K bytes
    - Viewed (0)
Back to top