Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for HostName (0.17 sec)

  1. okhttp/src/test/java/okhttp3/CallTest.kt

        server.enqueue(MockResponse())
        val cookieJar = RecordingCookieJar()
        cookieJar.enqueueRequestCookies(
          Cookie.Builder().name("a").value("b").domain(server.hostName).build(),
          Cookie.Builder().name("c").value("d").domain(server.hostName).build(),
        )
        client =
          client.newBuilder()
            .cookieJar(cookieJar)
            .build()
        executeSynchronously("/").assertCode(200)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertContent("This is the 2nd server, again!", getResponse(Request(server2.url("/"))))
        val server1Host = server.hostName + ":" + server.port
        val server2Host = server2.hostName + ":" + server2.port
        assertThat(server.takeRequest().headers["Host"]).isEqualTo(server1Host)
        assertThat(server2.takeRequest().headers["Host"]).isEqualTo(server2Host)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Excluded URLs For Indexing */
        public static final String LABELS_EXCLUDED_DOC_URLS = "{labels.excludedDocUrls}";
    
        /** The key of the message: Hostname */
        public static final String LABELS_HOSTNAME = "{labels.hostname}";
    
        /** The key of the message: ID */
        public static final String LABELS_ID = "{labels.id}";
    
        /** The key of the message: Included Paths For Crawling */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

        val result = Buffer()
        val sink = GzipSink(result).buffer()
        sink.writeUtf8(data)
        sink.close()
        return result
      }
    
      companion object {
        private val NULL_HOSTNAME_VERIFIER = HostnameVerifier { hostname, session -> true }
      }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

                trans = SmbTransport.getSmbTransport(addr, url.getPort());
                tree = trans.getSmbSession(auth).getSmbTree(share, null);
            }
    
            String hostName = getServerWithDfs();
            tree.inDomainDfs = dfs.resolve(hostName, tree.share, null, auth) != null;
            if (tree.inDomainDfs) {
                tree.connectionState = 2;
            }
    
            try {
                if( log.level >= 3 )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  6. cmd/admin-handlers.go

    	if !found {
    		// In distributed setup, anonymized addr = 'poolNum.serverNum'
    		newHost := fmt.Sprintf("pool%d.server%d", poolNum, srvrNum)
    		schemePfx := endpoint.Scheme + "://"
    
    		// Hostname
    		mapIfNotPresent(hostAnonymizer, endpoint.Hostname(), newHost)
    
    		newHostPort := newHost
    		if len(endpoint.Port()) > 0 {
    			// Host + port
    			newHostPort = newHost + ":" + endpoint.Port()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  7. CHANGELOG/CHANGELOG-1.5.md

        * as being in state "Unknown", along with a longer description in `kubectl describe` output.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  8. api/maven-api-model/src/main/mdo/maven.mdo

            <field>
              <name>url</name>
              <version>4.0.0+</version>
              <required>true</required>
              <description>
                The url of the repository, in the form {@code protocol://hostname/path}.
              </description>
              <type>String</type>
            </field>
            <field>
              <name>layout</name>
              <version>4.0.0+</version>
              <description>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    				default:
    				}
    			}
    			if c.EndpointURL().String() == clnt.EndpointURL().String() {
    				selfTarget, _ := isLocalHost(clnt.EndpointURL().Hostname(), clnt.EndpointURL().Port(), globalMinioPort)
    				if !sameTarget {
    					sameTarget = selfTarget
    				}
    				continue
    			}
    		}
    	}
    
    	if len(arns) == 0 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.30.md

       ([#121834](https://github.com/kubernetes/kubernetes/pull/121834), [@vaibhav2107](https://github.com/vaibhav2107))
    - Changed the API server so that for admission webhooks that have a URL matching the hostname 'localhost' or a loopback IP address, the connection supports HTTP/2 where it could be negotiated.
       ([#122558](https://github.com/kubernetes/kubernetes/pull/122558), [@linxiulei](https://github.com/linxiulei))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
Back to top