Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 151 for composite (0.18 sec)

  1. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

    import okhttp3.internal.url.canonicalize
    import okhttp3.internal.url.percentDecode
    
    /**
     * A uniform resource locator (URL) with a scheme of either `http` or `https`. Use this class to
     * compose and decompose Internet addresses. For example, this code will compose and print a URL for
     * Google search:
     *
     * ```java
     * HttpUrl url = new HttpUrl.Builder()
     *     .scheme("https")
     *     .host("www.google.com")
     *     .addPathSegment("search")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  2. architecture/ambient/ztunnel.md

      * This puts a much tighter budget on CPU, memory, latency, and throughput requirements than traditional Istio sidecars.
    
    Ztunnel was not designed to be a feature-rich data plane.
    Quite the opposite - an *aggressively* small feature set is the key feature that makes ztunnel viable.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 25 22:35:16 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Predicates.java

       * predicate returns {@code predicate(function(x))}.
       *
       * @return the composition of the provided function and predicate
       */
      public static <A extends @Nullable Object, B extends @Nullable Object> Predicate<A> compose(
          Predicate<B> predicate, Function<A, ? extends B> function) {
        return new CompositionPredicate<>(predicate, function);
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

          runnables = null; // allow GC to free listeners even if this stays around for a while.
        }
        // If we succeeded then list holds all the runnables we to execute. The pairs in the stack are
        // in the opposite order from how they were added so we need to reverse the list to fulfill our
        // contract.
        // This is somewhat annoying, but turns out to be very fast in practice. Alternatively, we could
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  5. docs/ru/docs/deployment/docker.md

    #### Docker Compose
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

        this.replacements = escaperMap.getReplacementArray();
        this.replacementsLength = replacements.length;
        if (safeMax < safeMin) {
          // If the safe range is empty, set the range limits to opposite extremes
          // to ensure the first test of either value will (almost certainly) fail.
          safeMax = Character.MIN_VALUE;
          safeMin = Character.MAX_VALUE;
        }
        this.safeMin = safeMin;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 18 20:55:09 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  7. docs/en/data/external_links.yml

        title: Why I'm Leaving Flask
      - author: Mike Moritz
        author_link: https://medium.com/@mike.p.moritz
        link: https://medium.com/@mike.p.moritz/using-docker-compose-to-deploy-a-lightweight-python-rest-api-with-a-job-queue-37e6072a209b
        title: Using Docker Compose to deploy a lightweight Python REST API with a job queue
      - author: '@euri10'
        author_link: https://gitlab.com/euri10
        link: https://gitlab.com/euri10/fastapi_cheatsheet
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  8. docs/tr/docs/project-generation.md

    ### Full Stack FastAPI PostgreSQL - Özellikler
    
    * Full **Docker** entegrasyonu (Docker based).
    * Docker Swarm Mode ile deployment.
    * **Docker Compose** entegrasyonu ve lokal geliştirme için optimizasyon.
    * Uvicorn ve Gunicorn ile **Production ready** Python web server'ı.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Jan 22 19:55:41 GMT 2024
    - 6K bytes
    - Viewed (0)
  9. docs/zh/docs/project-generation.md

    ### 全栈 FastAPI + PostgreSQL - 功能
    
    * 完整的 **Docker** 集成(基于 Docker)
    * Docker Swarm 开发模式
    * **Docker Compose** 本地开发集成与优化
    * **生产可用**的 Python 网络服务器,使用 Uvicorn 或 Gunicorn
    * Python <a href="https://github.com/tiangolo/fastapi" class="external-link" target="_blank">**FastAPI**</a> 后端:
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jan 28 18:03:58 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/concepts.md

    ### Beispieltools zur Ausführung beim Hochfahren
    
    Einige Beispiele für Tools, die diese Aufgabe übernehmen können, sind:
    
    * Docker
    * Kubernetes
    * Docker Compose
    * Docker im Schwarm-Modus
    * Systemd
    * Supervisor
    * Es wird intern von einem Cloud-Anbieter im Rahmen seiner Dienste verwaltet
    * Andere ...
    
    In den nächsten Kapiteln werde ich Ihnen konkretere Beispiele geben.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:16:25 GMT 2024
    - 20.6K bytes
    - Viewed (0)
Back to top