Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Scheme (0.18 sec)

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

        /**
         * @param scheme either "http" or "https".
         */
        fun scheme(scheme: String) =
          apply {
            when {
              scheme.equals("http", ignoreCase = true) -> this.scheme = "http"
              scheme.equals("https", ignoreCase = true) -> this.scheme = "https"
              else -> throw IllegalArgumentException("unexpected scheme: $scheme")
            }
          }
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

          tensorflow::Env::Default()->GetRegisteredFileSystemSchemes(all_schemes);
    
      if (status.ok()) {
        std::vector<std::string>* user_schemes = SchemeVector();
        if (!user_schemes->empty()) {
          auto is_requested_scheme = [user_schemes](const auto& scheme) {
            return std::find(user_schemes->begin(), user_schemes->end(), scheme) ==
                   user_schemes->end();
          };
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

            .newBuilder()
            .scheme("https")
            .build().port,
        ).isEqualTo(443)
        assertThat(
          parse("https://example.com")
            .newBuilder()
            .scheme("http")
            .build().port,
        ).isEqualTo(80)
        assertThat(
          parse("https://example.com:1234")
            .newBuilder()
            .scheme("http")
            .build().port,
        ).isEqualTo(1234)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 67.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

              )
              .hostnameVerifier(RecordingHostnameVerifier())
              .build()
          scheme = "https"
        } else {
          server.protocols = listOf(Protocol.H2_PRIOR_KNOWLEDGE)
          client =
            clientTestRule.newClientBuilder()
              .protocols(listOf(Protocol.H2_PRIOR_KNOWLEDGE))
              .build()
          scheme = "http"
        }
      }
    
      @AfterEach fun tearDown() {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 75.3K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    		return err
    	}
    
    	cred := r.Source.Creds
    
    	c, err := miniogo.New(u.Host, &miniogo.Options{
    		Creds:        credentials.NewStaticV4(cred.AccessKey, cred.SecretKey, cred.SessionToken),
    		Secure:       u.Scheme == "https",
    		Transport:    getRemoteInstanceTransport(),
    		BucketLookup: lookupStyle(r.Source.Path),
    	})
    	if err != nil {
    		return err
    	}
    
    	c.SetAppInfo("minio-"+batchJobPrefix, r.APIVersion+" "+job.ID)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// must be "". The scheme must never be `nullptr`.
    ///
    /// Every plugin fills this in `TF_InitPlugin`, using the alocator passed as
    /// argument to allocate memory. After `TF_InitPlugin` finishes, core
    /// TensorFlow uses the information present in this to initialize filesystems
    /// for the URI schemes that the plugin requests.
    ///
    /// All pointers defined in this structure point to memory allocated by the DSO
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    		err = o.GetRawData(ctx, minioMetaBucket, formatConfigFile, rawDataFn)
    	}
    	if !errors.Is(err, errFileNotFound) {
    		adminLogIf(ctx, err)
    	}
    
    	scheme := "https"
    	if !globalIsTLS {
    		scheme = "http"
    	}
    
    	// save MinIO start script to inspect command
    	var scrb bytes.Buffer
    	fmt.Fprintf(&scrb, `#!/usr/bin/env bash
    
    function main() {
    	for file in $(ls -1); do
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  8. okhttp/api/okhttp.api

    	public final fun -deprecated_authParams ()Ljava/util/Map;
    	public final fun -deprecated_charset ()Ljava/nio/charset/Charset;
    	public final fun -deprecated_realm ()Ljava/lang/String;
    	public final fun -deprecated_scheme ()Ljava/lang/String;
    	public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
    	public fun <init> (Ljava/lang/String;Ljava/util/Map;)V
    	public final fun authParams ()Ljava/util/Map;
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    			scheme := protocolToScheme[protocol]
    			portSuffix := ""
    			if schemePortDefault[scheme] != nport {
    				portSuffix = fmt.Sprintf(":%d", nport)
    			}
    			ip := ingress.getIngressIP()
    			fmt.Fprintf(writer, "%sExposed on Ingress Gateway %s://%s%s\n", printSpaces(initPrintNum), scheme, ip, portSuffix)
    		}
    	}
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

     * JCIFS Properties</a>). Here are some examples of SMB URLs with brief
     * descriptions of what they do:
     *
     * <p>
     * [1] This URL scheme is based largely on the <i>SMB
     * Filesharing URL Scheme</i> IETF draft.
     * 
     * <p>
     * <table border="1" cellpadding="3" cellspacing="0" width="100%" summary="URL examples">
     * <tr bgcolor="#ccccff">
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top