Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,233 for indication (0.2 sec)

  1. docs/fr/docs/deployment/https.md

      href="https://fr.wikipedia.org/wiki/Server_Name_Indication" class="external-link" target="_blank"><abbr
      title="Server Name Indication (indication du nom du serveur)">SNI (indication du nom du serveur)</abbr></a>.
        * Cette extension SNI permet à un seul serveur (avec une seule adresse IP) d'avoir plusieurs certificats HTTPS et de servir plusieurs domaines/applications HTTPS.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:45:30 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. pkg/windows/service/service.go

    	"golang.org/x/sys/windows/svc"
    )
    
    type handler struct {
    	tosvc   chan bool
    	fromsvc chan error
    }
    
    // InitService is the entry point for running the daemon as a Windows
    // service. It returns an indication of whether it is running as a service;
    // and an error.
    func InitService(serviceName string) error {
    	h := &handler{
    		tosvc:   make(chan bool),
    		fromsvc: make(chan error),
    	}
    
    	var err error
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 11:25:33 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

         * This term does not support dynamic versions.
         * <p>
         * This can complement a {@link #strictly(String) strictly} or {@link #require(String) require} indication.
         * <p>
         * This clears any set rejected versions.
         *
         * @param version the preferred version of this module
         */
        void prefer(String version);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  4. mockwebserver/src/main/kotlin/mockwebserver3/RecordedRequest.kt

       * received without TLS.
       */
      val handshake: Handshake?
      val requestUrl: HttpUrl?
    
      /**
       * Returns the name of the server the client requested via the SNI (Server Name Indication)
       * attribute in the TLS handshake. Unlike the rest of the HTTP exchange, this name is sent in
       * cleartext and may be monitored or blocked by a proxy or other middlebox.
       */
      val handshakeServerNames: List<String>
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. docs/pt/docs/deployment/https.md

    * Há uma extensão para o protocolo TLS (aquele que lida com a criptografia no nível TCP, antes do HTTP) chamado <a href="https://en.wikipedia.org/wiki/Server_Name_Indication" class="external-link" target="_blank"><abbr title="Server Name Indication">SNI</abbr></a>.
        * Esta extensão SNI permite que um único servidor (com um único endereço IP) tenha vários certificados HTTPS e atenda a vários domínios / aplicativos HTTPS.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 05 10:40:05 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Connection.kt

     *
     * ## Modern TLS
     *
     * There are trade-offs when selecting which options to include when negotiating a secure connection
     * to a remote host. Newer TLS options are quite useful:
     *
     *  * Server Name Indication (SNI) enables one IP address to negotiate secure connections for
     *    multiple domain names.
     *
     *  * Application Layer Protocol Negotiation (ALPN) enables the HTTPS port (443) to be used to
     *    negotiate HTTP/2.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_testlib.h

    // A helper for performing common operations on variables. A much more
    // restricted stand-in for tf.Variable in Python.
    class Variable {
     public:
      // Construct a Variable from a resource-dtype TFE_TensorHandle and an
      // indication of the dtype of the variable's value.
      //
      // Note that creating this resource-dtype handle can fail, so `Create` is a
      // separate static method which returns a status.
      Variable(TFE_TensorHandle* handle, TF_DataType type)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 09 01:12:35 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

                this.moduleName = Objects.requireNonNull(moduleName);
            }
    
            /**
             * Returns the type of path without indication about the target module.
             * This is usually {@link #PATCH_MODULE}.
             *
             * @return type of path without indication about the target module
             */
            @Nonnull
            public JavaPathType rawType() {
                return JavaPathType.this;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. pkg/proxy/topology.go

    //     previous two lists, but in the case where it is identical to one or the other, we avoid
    //     allocating a separate list).
    //
    //   - An indication of whether the service has any endpoints reachable from anywhere in the
    //     cluster. (This may be true even if allReachableEndpoints is empty.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. pkg/config/security/security.go

    	attrDestNamespace    = "destination.namespace"  // e.g. "default".
    	attrDestUser         = "destination.user"       // service account, e.g. "bookinfo-productpage".
    	attrConnSNI          = "connection.sni"         // server name indication, e.g. "www.example.com".
    	attrExperimental     = "experimental.envoy.filters."
    )
    
    var (
    	MatchOneTemplate = "{*}"
    	MatchAnyTemplate = "{**}"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top