Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for hosts (0.13 sec)

  1. istioctl/pkg/proxyconfig/testdata/config_dump.json

                          "stat_prefix": "agent",
                          "route_config": {
                            "virtual_hosts": [
                              {
                                "name": "backend",
                                "domains": [
                                  "*"
                                ],
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  2. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                            "stat_prefix": "connect_terminate",
                            "route_config": {
                              "name": "default",
                              "virtual_hosts": [
                                {
                                  "name": "default",
                                  "domains": [
                                    "*"
                                  ],
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        @SuppressWarnings("unchecked")
        default Tuple3<String, String, String>[] getVirtualHosts() {
            Tuple3<String, String, String>[] hosts = (Tuple3<String, String, String>[]) propMap.get(VIRTUAL_HOST_HEADERS);
            if (hosts == null) {
                hosts = split(getVirtualHostHeaderValue(), "\n").get(stream -> stream.map(s -> {
                    final String[] v1 = s.split("=");
                    if (v1.length == 2) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump.json

                            "stat_prefix": "connect_terminate",
                            "route_config": {
                              "name": "default",
                              "virtual_hosts": [
                                {
                                  "name": "default",
                                  "domains": [
                                    "*"
                                  ],
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            });
        }
    
        protected Client createHttpClient(final FessConfig fessConfig, final String host) {
            final String[] hosts =
                    split(host, ",").get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).toArray(n -> new String[n]));
            final Builder builder = Settings.builder().putList("http.hosts", hosts).put("processors", fessConfig.availableProcessors())
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    	query.Set("X-Amz-Expires", strconv.FormatInt(expires, 10))
    	query.Set("X-Amz-SignedHeaders", "host")
    	query.Set("X-Amz-Credential", credential)
    	query.Set("X-Amz-Content-Sha256", unsignedPayload)
    
    	// "host" is the only header required to be signed for Presigned URLs.
    	extractedSignedHeaders := make(http.Header)
    	extractedSignedHeaders.Set("host", req.Host)
    
    	queryStr := strings.ReplaceAll(query.Encode(), "+", "%20")
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         */
        public void setClassRealm(ClassRealm classRealm) {
            this.classRealm = classRealm;
        }
    
        /**
         * Gets the project's class realm. This class realm hosts the build extensions of the project.
         * <strong>Warning:</strong> This is an internal utility method that is only public for technical reasons, it is not
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  8. cmd/peer-rest-server.go

    	for _, disk := range values[peerRESTDisk] {
    		diskMap[disk] = struct{}{}
    	}
    
    	hostMap := make(map[string]struct{})
    	for _, host := range values[peerRESTHost] {
    		hostMap[host] = struct{}{}
    	}
    
    	info := collectLocalMetrics(types, collectMetricsOpts{
    		disks: diskMap,
    		hosts: hostMap,
    		jobID: values.Get(peerRESTJobID),
    		depID: values.Get(peerRESTDepID),
    	})
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 51.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

              )
          }
    
        /**
         * @param host either a regular hostname, International Domain Name, IPv4 address, or IPv6
         * address.
         */
        fun host(host: String) =
          apply {
            val encoded =
              host.percentDecode().toCanonicalHost()
                ?: throw IllegalArgumentException("unexpected host: $host")
            this.host = encoded
          }
    
        fun port(port: Int) =
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  10. docs/changelogs/changelog_3x.md

     *  Fix: Don’t allow remote peer to arbitrarily size the HPACK decoder dynamic
        table.
     *  Fix: Honor per-host configuration in Android’s network security config.
        Previously disabling cleartext for any host would disable cleartext for all
        hosts. Note that this setting is only available on Android 24+.
     *  New: HPACK compression is now dynamic. This should improve performance when
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
Back to top