Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,398 for Gill (0.17 sec)

  1. architecture/readme.md

    core_runtime["core-runtime module"]
    style core_runtime stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px;
    
    core_configuration["core-configuration module"]
    style core_configuration stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px;
    
    core_execution["core-execution module"]
    style core_execution stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px;
    end
    style core fill:#c2e0f4,stroke:#3498db,stroke-width:2px;
    
    documentation["documentation module"]
    Plain Text
    - Registered: Wed Feb 21 11:36:11 GMT 2024
    - Last Modified: Wed Feb 14 20:23:24 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/offline-mode.apt

        filesystem, it will continue to be available.
    
      The question remaining is: Which level of offline mode will we support? It
      seems reasonable to assume that users will be able to tell when localhost is
      not active (in most cases, localhost should be available, even if the rest of
      the network is not). Therefore, let's concentrate on the state where no
      network <beyond localhost> exists, and leave the more extreme state to users
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        # meshes will interact with each other, but it is not required to be
        # globally/universally unique. For example, if any of the following are true,
        # then two meshes must have different Mesh IDs:
        # - Meshes will have their telemetry aggregated in one place
        # - Meshes will be federated together
        # - Policy will be written referencing one mesh from the other
        #
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/openapi-callbacks.md

        * This will be done by sending a POST request (from *your API*) to some *external API* provided by that external developer (this is the "callback").
    
    ## The normal **FastAPI** app
    
    Let's first see how the normal API app would look like before adding the callback.
    
    It will have a *path operation* that will receive an `Invoice` body, and a query parameter `callback_url` that will contain the URL for the callback.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

     * including dots after the first colon. It matches IPv4 addresses as strings containing only
     * decimal digits and dots. This pattern matches strings like "a:.23" and "54" that are neither IP
     * addresses nor hostnames; they will be verified as IP addresses (which is a more strict
     * verification).
     */
    private val VERIFY_AS_IP_ADDRESS = "([0-9a-fA-F]*:[0-9a-fA-F:.]*)|([\\d.]+)".toRegex()
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

          Thread.currentThread().interrupt() // Retain interrupted status.
          throw InterruptedIOException()
        }
      }
    
      /**
       * The Okio timeout watchdog will call [timedOut] if the timeout is reached. In that case we close
       * the stream (asynchronously) which will notify the waiting thread.
       */
      internal inner class StreamTimeout : AsyncTimeout() {
        override fun timedOut() {
          closeLater(ErrorCode.CANCEL)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 23.2K bytes
    - Viewed (1)
  7. docs/en/docs/tutorial/body.md

    * Those schemas will be part of the generated OpenAPI schema, and used by the automatic documentation <abbr title="User Interfaces">UIs</abbr>.
    
    ## Automatic docs
    
    The JSON Schemas of your models will be part of your OpenAPI generated schema, and will be shown in the interactive API docs:
    
    <img src="/img/tutorial/body/image01.png">
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  8. architecture/README.md

            style core_runtime stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
            core_configuration["core-configuration module"]
            style core_configuration stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
            core_execution["core-execution module"]
            style core_execution stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
        end
        style core fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 22 01:31:52 GMT 2024
    - 2K bytes
    - Viewed (0)
  9. docs/kms/IAM.md

    configuration using e.g. the `mc admin config` commands you will need to adjust
    your deployment.
    
    Even though this change is backward compatible we do not expect that it affects
    the vast majority of deployments in any negative way.
    
    > Will an upgrade of an existing MinIO cluster impact the SLA of the cluster or will it even cause downtime?
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSet.java

       * the stream contains duplicates (according to {@link Object#equals(Object)}), only the first
       * duplicate in encounter order will appear in the result.
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      static <E> Collector<E, ?, ImmutableSet<E>> toImmutableSet() {
        return CollectCollectors.toImmutableSet();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 22.4K bytes
    - Viewed (0)
Back to top