Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 879 for support (0.19 sec)

  1. SUPPORT.md

    # Support
    
    Here are some resources to help you understand and use Istio:
    
    - For in-depth information about how to use Istio, visit [istio.io](https://istio.io)
    - To ask questions and get assistance from our community, visit [GitHub Discussions](https://github.com/istio/istio/discussions)
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Feb 12 19:00:41 GMT 2024
    - 411 bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Protocol.kt

       * on HTTP/2.
       *
       * QUIC is not natively supported by OkHttp, but provided to allow a theoretical interceptor that
       * provides support.
       */
      QUIC("quic"),
    
      /**
       * HTTP/3 is the third and upcoming major version of the Hypertext Transfer Protocol used to
       * exchange information. HTTP/3 runs over QUIC, which is published as RFC 9000.
       *
       * HTTP/3 is not natively supported by OkHttp, but provided to allow a theoretical interceptor
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 06 04:17:33 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  3. architecture/standards/0004-use-a-platform-architecture.md

    This platform does not provide special support for a particular language or ecosystem.
    
    #### JVM platform
    
    This is a platform that builds on the core and software platforms to add support for developing software that runs on the JVM.
    This includes software that is implemented using Java, Kotlin or some other JVM language.
    
    This platform provides specific support for Java, Groovy and Scala, and includes the foojay toolchain plugin. 
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Feb 25 22:19:29 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  4. architecture-standards/0004-use-a-platform-architecture.md

    This platform does not provide special support for a particular language or ecosystem.
    
    #### JVM platform
    
    This is a platform that builds on the core and software platforms to add support for developing software that runs on the JVM.
    This includes software that is implemented using Java, Kotlin or some other JVM language.
    
    This platform provides specific support for Java, Groovy and Scala, and includes the foojay toolchain plugin. 
    Plain Text
    - Registered: Wed Feb 14 11:36:15 GMT 2024
    - Last Modified: Wed Feb 07 00:56:13 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/RangeSet.java

       *
       * <p>The returned view supports the {@link #add} operation if this {@code RangeSet} supports
       * {@link #remove}, and vice versa.
       */
      RangeSet<C> complement();
    
      /**
       * Returns a view of the intersection of this {@code RangeSet} with the specified range.
       *
       * <p>The returned view supports all optional operations supported by this {@code RangeSet}, with
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/body.md

    There were even some changes to Pydantic itself to support this.
    
    The previous screenshots were taken with <a href="https://code.visualstudio.com" class="external-link" target="_blank">Visual Studio Code</a>.
    
    But you would get the same editor support with <a href="https://www.jetbrains.com/pycharm/" class="external-link" target="_blank">PyCharm</a> and most of the other Python editors:
    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)
  7. docs/debugging/inspect/main.go

    	"flag"
    	"fmt"
    	"io"
    	"os"
    	"strings"
    	"time"
    )
    
    var (
    	keyHex      = flag.String("key", "", "decryption key")
    	privKeyPath = flag.String("private-key", "support_private.pem", "private key")
    	stdin       = flag.Bool("stdin", false, "expect 'mc support inspect' json output from stdin")
    	export      = flag.Bool("export", false, "export xl.meta")
    	djson       = flag.Bool("djson", false, "expect djson format for xl.meta")
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 21:22:47 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  8. .bazelrc

    #     v2: Build TF v2
    #
    # Feature and Third party library support options:
    #     xla:          Build TF with XLA
    #     tpu:          Build TF with TPU support
    #     cuda:         Build with CUDA support.
    #     cuda_clang    Build with CUDA Clang support.
    #     rocm:         Build with AMD GPU support (rocm)
    #     mkl:          Enable full mkl support.
    #     tensorrt:     Enable Tensorrt support.
    #     noaws:        Disable AWS S3 storage support
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  9. maven-builder-support/pom.xml

      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven</artifactId>
        <version>4.0.0-beta-1-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-builder-support</artifactId>
    
      <name>Maven Builder Support</name>
      <description>Support for descriptor builders (model, setting, toolchains)</description>
    
      <dependencies>
        <dependency>
          <groupId>org.junit.jupiter</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  10. okhttp-brotli/README.md

    OkHttp Brotli Implementation
    ============================
    
    This module is an implementation of [Brotli][1] compression.
    It enables Brotli support in addition to tranparent Gzip support,
    provided Accept-Encoding is not set previously.  Modern web servers
    must choose to return Brotli responses.  n.b. It is not used for
    sending requests.
    
    ```java
    OkHttpClient client = new OkHttpClient.Builder()
      .addInterceptor(BrotliInterceptor.INSTANCE)
      .build();
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Dec 17 15:34:10 GMT 2023
    - 572 bytes
    - Viewed (0)
Back to top