Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 295 for tell (0.12 seconds)

  1. mockwebserver/src/test/java/mockwebserver3/MockResponseSniTest.kt

          assertThat(recordedRequest.handshakeServerNames).containsExactly("cash.app")
        }
      }
    
      /**
       * Connect to [hostnameOrIpAddress] and return what was received. To fake an arbitrary hostname we
       * tell MockWebServer to act as a proxy.
       */
      private fun requestToHostnameViaProxy(hostnameOrIpAddress: String): RecordedRequest {
        val heldCertificate =
          HeldCertificate
            .Builder()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Jun 18 12:28:21 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnection.kt

       * requires us to have a DNS address for both hosts, which only happens after route planning. We
       * can't coalesce connections that use a proxy, since proxies don't tell us the origin server's IP
       * address.
       */
      private fun routeMatchesAny(candidates: List<Route>): Boolean =
        candidates.any {
          it.proxy.type() == Proxy.Type.DIRECT &&
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Oct 07 21:55:03 GMT 2025
    - 14.6K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/resources/forbidden/es-server-signatures.txt

    # Side Public License, v 1.
    
    # For third-party dependencies, please put signatures in third-party.txt instead of here.
    
    @defaultMessage spawns threads with vague names; use a custom thread factory and name threads so that you can tell (by its name) which executor it is associated with
    
    java.util.concurrent.Executors#newFixedThreadPool(int)
    java.util.concurrent.Executors#newSingleThreadExecutor()
    java.util.concurrent.Executors#newCachedThreadPool()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 16:53:28 GMT 2021
    - 7.6K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

             * predictable what work might be done. (e.g., close a file and flush buffers to disk). To
             * protect ourselves from this, we park ourselves and tell our interrupter that we did so.
             */
            if (state == PARKED || compareAndSet(state, PARKED)) {
              // Interrupting Cow Says:
              //  ______
              // < Park >
              //  ------
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jan 28 22:39:02 GMT 2026
    - 10K bytes
    - Click Count (0)
  5. PULL_REQUESTS_ETIQUETTE.md

    ## Why Pull Requests?
    
    Pull Requests (PRs) drive quality in MinIO’s codebase by:
    - Enabling peer review without pair programming.
    - Documenting changes for future reference.
    - Ensuring commits tell a clear story of development.
    
    **A poor commit lasts forever, even if code is refactored.**
    
    ## Crafting a Quality PR
    
    A strong MinIO PR:
    - Delivers a complete, valuable change (feature, bug fix, or improvement).
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun May 25 16:32:03 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  6. docs/en/docs/fastapi-cli.md

    You can configure where your app is located in a `pyproject.toml` file like:
    
    ```toml
    [tool.fastapi]
    entrypoint = "main:app"
    ```
    
    That `entrypoint` will tell the `fastapi` command that it should import the app like:
    
    ```python
    from main import app
    ```
    
    If your code was structured like:
    
    ```
    .
    ├── backend
    │   ├── main.py
    │   ├── __init__.py
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/reflect/TypesTest.java

      private static class WithTypeVariable {
    
        @SuppressWarnings("unused")
        <T> void withoutBound(List<T> list) {}
    
        @SuppressWarnings({
          "unused",
          /*
           * Since reflection can't tell the difference between <T> and <T extends Object>, it doesn't
           * make a ton of sense to have a separate tests for each. But having tests for each doesn't
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 15.5K bytes
    - Click Count (0)
  8. docs/en/docs/deployment/manually.md

    * Security - HTTPS
    * Running on startup
    * Restarts
    * Replication (the number of processes running)
    * Memory
    * Previous steps before starting
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  9. benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/bucket/terms/LongKeyedBucketOrdsBenchmark.java

         * This can happen if an aggregation is under, say, a {@code terms}
         * aggregation and there is only a single value for that term in the index
         * but we can't tell that up front.
         */
        @Benchmark
        public void singleBucketIntoMulti(Blackhole bh) {
            try (LongKeyedBucketOrds ords = LongKeyedBucketOrds.build(bigArrays, CardinalityUpperBound.MANY)) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Feb 19 20:59:23 GMT 2021
    - 8.4K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/docker/DockerSupportService.java

            // and version, so that we know whether to expect to find Docker. We don't attempt
            // to probe for whether Docker is available, because that doesn't tell us whether
            // Docker is unavailable when it should be.
            final Path osRelease = Paths.get("/etc/os-release");
    
            if (Files.exists(osRelease)) {
                Map<String, String> values;
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 14.8K bytes
    - Click Count (0)
Back to Top