Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Domainname (0.26 sec)

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

              val domainName = fromSource.readUtf8(domainNameLength.toLong())
              // Resolve HOSTNAME_THAT_ONLY_THE_PROXY_KNOWS to localhost.
              when {
                domainName.equals(HOSTNAME_THAT_ONLY_THE_PROXY_KNOWS, ignoreCase = true) -> {
                  InetAddress.getByName("localhost")
                }
                else -> InetAddress.getByName(domainName)
              }
            }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. cmd/common-main.go

    	if len(domains) != 0 {
    		for _, domainName := range strings.Split(domains, config.ValueSeparator) {
    			if _, ok := dns2.IsDomainName(domainName); !ok {
    				logger.Fatal(config.ErrInvalidDomainValue(nil).Msg("Unknown value `%s`", domainName),
    					"Invalid MINIO_DOMAIN value in environment variable")
    			}
    			globalDomainNames = append(globalDomainNames, domainName)
    		}
    		sort.Strings(globalDomainNames)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. cmd/api-router.go

    				// makes sure that buckets are routed through this matcher
    				// to match for `<bucket>`
    				return host != minioReservedBucket+"."+domainName
    			}).Host("{bucket:.+}."+domainName).Subrouter())
    		} else {
    			routers = append(routers, apiRouter.Host("{bucket:.+}."+domainName).Subrouter())
    		}
    	}
    	routers = append(routers, apiRouter.PathPrefix("/{bucket}").Subrouter())
    
    	for _, router := range routers {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    								},
    							}
    							perRouteFilters[util.StatefulSessionFilter] = protoconv.MessageToAny(perRouteStatefulSession)
    						}
    					}
    					newVHost := &route.VirtualHost{
    						Name:    util.DomainName(string(hostname), port),
    						Domains: []string{hostname.String()},
    						// Route will be appended to during deduplication, so make sure we are operating on a copy
    						Routes:                     slices.Clone(routes),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    func IPv6Compliant(host string) string {
    	if strings.Contains(host, ":") {
    		return "[" + host + "]"
    	}
    	return host
    }
    
    // DomainName builds the domain name for a given host and port
    func DomainName(host string, port int) string {
    	return net.JoinHostPort(host, strconv.Itoa(port))
    }
    
    // BuildInternalEndpoint builds an lb endpoint pointing to the internal listener named dest.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util_test.go

    		{"::1", 3000, "[::1]:3000"},
    		{"2001:4860:0:2001::68", 3000, "[2001:4860:0:2001::68]:3000"},
    	}
    	for _, tt := range tests {
    		t.Run(fmt.Sprint(tt.host), func(t *testing.T) {
    			if got := DomainName(tt.host, tt.port); got != tt.match {
    				t.Fatalf("got %v wanted %v", got, tt.match)
    			}
    		})
    	}
    }
    
    func TestStatefulSessionFilterConfig(t *testing.T) {
    	cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    const SizeofInotifyEvent = 0x10
    
    const SI_LOAD_SHIFT = 0x10
    
    type Utsname struct {
    	Sysname    [65]byte
    	Nodename   [65]byte
    	Release    [65]byte
    	Version    [65]byte
    	Machine    [65]byte
    	Domainname [65]byte
    }
    
    const (
    	AT_EMPTY_PATH   = 0x1000
    	AT_FDCWD        = -0x64
    	AT_NO_AUTOMOUNT = 0x800
    	AT_REMOVEDIR    = 0x200
    
    	AT_STATX_SYNC_AS_STAT = 0x0
    	AT_STATX_FORCE_SYNC   = 0x2000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// +optional
    	Hostname string
    	// If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>".
    	// If not specified, the pod will not have a domainname at all.
    	// +optional
    	Subdomain string
    	// If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"subdomain":                     "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.",
    	"affinity":                      "If specified, the pod's scheduling constraints",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string hostname = 16;
    
      // If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>".
      // If not specified, the pod will not have a domainname at all.
      // +optional
      optional string subdomain = 17;
    
      // If specified, the pod's scheduling constraints
      // +optional
      optional Affinity affinity = 18;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top