Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 969 for host2 (0.05 sec)

  1. 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)
  2. tensorflow/compiler/jit/xla_tpu_device.cc

    // interconnects, which is much faster than PCIe or the host network.
    // TODO(b/117426293): This implementation is only called for direct interconnect
    // transfers between TPU devices attached to the same host. Ideally, we would
    // generalize this support to direct interconnect transfers across hosts, but
    // currently the CopyTensor infrastructure seems to the network topology is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. src/crypto/x509/verify.go

    	}
    
    	return true
    }
    
    func matchExactly(hostA, hostB string) bool {
    	if hostA == "" || hostA == "." || hostB == "" || hostB == "." {
    		return false
    	}
    	return toLowerCaseASCII(hostA) == toLowerCaseASCII(hostB)
    }
    
    func matchHostnames(pattern, host string) bool {
    	pattern = toLowerCaseASCII(pattern)
    	host = toLowerCaseASCII(strings.TrimSuffix(host, "."))
    
    	if len(pattern) == 0 || len(host) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    kind: VirtualService
    metadata:
      name: alias
    spec:
      hosts:
      - alias.default.svc.cluster.local
      http:
      - name: "route1"
        match:
        - uri:
            prefix: "/one"
        route:
        - destination:
            host: concrete.default.svc.cluster.local`,
    		kubeConfig: service,
    		calls: []simulation.Expect{
    			{
    				// This work, Host is just an opaque hostname match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    	},
    }
    
    // Shares the same host as httpStatic, but adds some endpoints. We expect these to be merge
    var httpStaticOverlay = &config.Config{
    	Meta: config.Meta{
    		GroupVersionKind:  gvk.ServiceEntry,
    		Name:              "httpStaticOverlay",
    		Namespace:         "httpStatic",
    		CreationTimestamp: GlobalTime,
    	},
    	Spec: &networking.ServiceEntry{
    		Hosts: []string{"*.google.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. 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)
  7. tests/integration/ambient/baseline_test.go

          name: http
          protocol: HTTP
        hosts: ["*"]
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route
    spec:
      gateways:
      - gateway
      hosts:
      - "*"
      http:
      - match:
        - uri:
            exact: /allowed
        route:
        - destination:
            host: "{{.Destination}}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. pilot/pkg/xds/xds_test.go

            name: custom-http
          defaultEndpoint: unix:///var/run/someuds.sock
    {{- end }}
      egress:
        - hosts:
    {{ range $i, $ns := .ImportedNamespaces }}
          - {{$ns}}
    {{ end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: app
      namespace: app
    spec:
      hosts:
      - app.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K 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. hack/lib/util.sh

    }
    
    # signs a serving certificate: args are sudo, dest-dir, ca, filename (roughly), subject, hosts...
    function kube::util::create_serving_certkey {
        local sudo=$1
        local dest_dir=$2
        local ca=$3
        local id=$4
        local cn=${5:-$4}
        local hosts=""
        local SEP=""
        shift 5
        while [ -n "${1:-}" ]; do
            hosts+="${SEP}\"$1\""
            SEP=","
            shift 1
        done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top