Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 275 for host2 (0.11 sec)

  1. tests/integration/pilot/multicluster_test.go

    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: mysvc-vs
    spec:
      hosts:
      - {{.host}}
      http:
    {{- range .dst }}
      - name: "{{ .Config.Cluster.Name }}-local"
        match:
        - sourceLabels:
            topology.istio.io/cluster: {{ .Config.Cluster.Name }}
        route:
        - destination:
            host: {{$.host}}
            subset: {{ .Config.Cluster.Name }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1.Ingress.json

            "kind": "kindValue",
            "name": "nameValue"
          }
        },
        "tls": [
          {
            "hosts": [
              "hostsValue"
            ],
            "secretName": "secretNameValue"
          }
        ],
        "rules": [
          {
            "host": "hostValue",
            "http": {
              "paths": [
                {
                  "path": "pathValue",
                  "pathType": "pathTypeValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/util.go

    kind: VirtualService
    metadata:
      name: validation-readiness-dummy-virtual-service
      namespace: %s
    spec:
      hosts:
        - non-existent-host
      http:
        - route:
          - destination:
              host: non-existent-host
              subset: v1
            weight: 75
          - destination:
              host: non-existent-host
              subset: v2
            weight: 25
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/locality_test.go

    func expectAllTrafficTo(dest string) map[string]int {
    	return map[string]int{dest: sendCount}
    }
    
    func sendTrafficOrFail(t framework.TestContext, from echo.Instance, host string, expected map[string]int) {
    	t.Helper()
    	headers := http.Header{}
    	headers.Add("Host", host)
    	checker := func(result echo.CallResult, inErr error) error {
    		if inErr != nil {
    			return inErr
    		}
    		got := map[string]int{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    			discoverability: make(map[host.Name]string),
    		}
    
    		// Generate the map of all hosts for this service to their discoverability policies.
    		clusterLocalHost := kubesr.ServiceHostname(uExport.GetName(), uExport.GetNamespace(), ec.opts.DomainSuffix)
    		clusterSetLocalHost := serviceClusterSetLocalHostname(es.namespacedName)
    		for _, hostName := range []host.Name{clusterLocalHost, clusterSetLocalHost} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/cmd/go/scriptconds_test.go

    var scriptNetEnabled sync.Map // testing.TB → already enabled
    
    func hasNet(s *script.State, host string) (bool, error) {
    	if !testenv.HasExternalNetwork() {
    		return false, nil
    	}
    
    	// TODO(bcmills): Add a flag or environment variable to allow skipping tests
    	// for specific hosts and/or skipping all net tests except for specific hosts.
    
    	t, ok := tbFromContext(s.Context())
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

        }
        for (existingCall in readyAsyncCalls) {
          if (existingCall.host == host) return existingCall
        }
        return null
      }
    
      /**
       * Cancel all calls currently enqueued or executing. Includes calls executed both
       * [synchronously][Call.execute] and [asynchronously][Call.enqueue].
       */
      fun cancelAll() {
        this.withLock {
          for (call in readyAsyncCalls) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/retry/retry.go

    		HostSelectionRetryMaxAttempts: 5,
    	}
    	return &policy
    }
    
    // DefaultConsistentHashPolicy gets a copy of the default retry policy without previous host predicate.
    // When Consistent Hashing is enabled, we don't want to use other hosts during retries.
    func DefaultConsistentHashPolicy() *route.RetryPolicy {
    	return defaultPolicy()
    }
    
    // ConvertPolicy converts the given Istio retry policy to an Envoy policy.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pkg/dns/server/name_table.go

    						shortName := instance.HostName + "." + instance.SubDomain
    						host := shortName + "." + parts[1] // Add cluster domain.
    						nameInfo := &dnsProto.NameTable_NameInfo{
    							Ips:       address,
    							Registry:  string(svc.Attributes.ServiceRegistry),
    							Namespace: svc.Attributes.Namespace,
    							Shortname: shortName,
    						}
    
    						if _, f := out.Table[host]; !f || sameCluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. cmd/metrics-realtime.go

    )
    
    type collectMetricsOpts struct {
    	hosts map[string]struct{}
    	disks map[string]struct{}
    	jobID string
    	depID string
    }
    
    func collectLocalMetrics(types madmin.MetricType, opts collectMetricsOpts) (m madmin.RealtimeMetrics) {
    	if types == madmin.MetricsNone {
    		return
    	}
    
    	byHostName := globalMinioAddr
    	if len(opts.hosts) > 0 {
    		server := getLocalServerProperty(globalEndpoints, &http.Request{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:16:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top