- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for scheme (0.28 sec)
-
okhttp/src/main/kotlin/okhttp3/HttpUrl.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 09 12:33:05 UTC 2024 - 63.5K bytes - Viewed (0) -
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() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Apr 11 22:09:35 UTC 2024 - 75.3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/HttpUrlTest.kt
assertFailsWith<IllegalStateException> { HttpUrl.Builder().scheme("http").build() } assertThat(noHost.message).isEqualTo("host == null") val noScheme = assertFailsWith<IllegalStateException> { HttpUrl.Builder().host("host").build() } assertThat(noScheme.message).isEqualTo("scheme == null") } @Test fun builderToString() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 67.9K bytes - Viewed (0) -
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) } } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
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)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 18 15:32:09 UTC 2024 - 62.2K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
responses returned by OkHttp itself, and it was an old mistake to permit application code to omit a message. * The challenge's scheme and realm are now non-null. If you are calling `new Challenge(scheme, realm)` you must provide non-null values. These were never null in challenges created by OkHttp, but could have been null in application code that creates challenges.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
okhttp/api/okhttp.api
public final fun charset ()Ljava/nio/charset/Charset; public fun equals (Ljava/lang/Object;)Z public fun hashCode ()I public final fun realm ()Ljava/lang/String; public final fun scheme ()Ljava/lang/String; public fun toString ()Ljava/lang/String; public final fun withCharset (Ljava/nio/charset/Charset;)Lokhttp3/Challenge; } public final class okhttp3/CipherSuite {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 13:41:01 UTC 2024 - 70.2K bytes - Viewed (0) -
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">
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
* the second version is the newer. */ private static int compareModelVersions(String first, String second) { // we use a dedicated comparator because we control our model version scheme. String[] firstSegments = first.split("\\."); String[] secondSegments = second.split("\\."); for (int i = 0; i < Math.max(firstSegments.length, secondSegments.length); i++) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
"text/x-pascal", "text/x-perl", "text/x-php", "text/x-prolog", "text/x-python", "text/x-rst", "text/x-rexx", "text/x-ruby", "text/x-scala", "text/x-scheme", "text/x-sed", "text/x-sql", "text/x-setext", "text/x-stsrc", "text/x-tcl", "text/x-uuencode", "text/x-vbasic", "text/x-vbdotnet", "text/x-vbscript",
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Aug 01 21:40:30 UTC 2020 - 49K bytes - Viewed (0)