Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 193 for lmhosts (0.44 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

      override fun noNewExchanges() {
        this.withLock {
          noNewExchanges = true
        }
        connectionListener.noNewExchanges(this)
      }
    
      /** Prevent this connection from being used for hosts other than the one in [route]. */
      internal fun noCoalescedConnections() {
        this.withLock {
          noCoalescedConnections = true
        }
      }
    
      internal fun incrementSuccessCount() {
        this.withLock {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/environment/kube/kube.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // Environment is the implementation of a kubernetes environment. It implements environment.Environment,
    // and also hosts publicly accessible methods that are specific to cluster environment.
    type Environment struct {
    	id       resource.ID
    	ctx      resource.Context
    	clusters []cluster.Cluster
    	s        *Settings
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. helm-releases/minio-5.2.0.tgz

    sClassName }} ingressClassName: {{ .Values.consoleIngress.ingressClassName }} {{- end }} {{- if .Values.consoleIngress.tls }} tls: {{- range .Values.consoleIngress.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} {{- end }} {{- end }} rules: {{- range .Values.consoleIngress.hosts }} - http: paths: - path: {{ $ingressPath }} {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} pathType: Prefix backend: service: name: {{ $fullName }}...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_tpu_device.cc

    // 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
    // strictly hierarchical, that is, transfers between devices on different hosts
    // can only take place using the host network.
    void TpuDeviceToDeviceCopy(DeviceContext* src_dev_context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. cmd/metrics-v3-system-drive.go

    		allDriveLabels...)
    )
    
    func getCurrentDriveIOStats() map[string]madmin.DiskIOStats {
    	var types madmin.MetricType = madmin.MetricsDisk
    	driveRealtimeMetrics := collectLocalMetrics(types, collectMetricsOpts{
    		hosts: map[string]struct{}{
    			globalLocalNodeName: {},
    		},
    	})
    
    	stats := map[string]madmin.DiskIOStats{}
    	for d, m := range driveRealtimeMetrics.ByDisk {
    		stats[d] = m.IOStats
    	}
    	return stats
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 12 17:23:50 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. tests/integration/security/egress_gateway_origination_test.go

    metadata:
      name: istio-egressgateway-sds
    spec:
      selector:
        istio: {{.EgressLabel}}
      servers:
        - port:
            number: 443
            name: https-sds
            protocol: HTTPS
          hosts:
          - {{ .to.Config.ClusterLocalFQDN }}
          tls:
            mode: ISTIO_MUTUAL
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: egressgateway-for-server-sds
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. src/net/dnsclient.go

    // trailing dot to match pure Go reverse resolver and all other lookup
    // routines.
    // See golang.org/issue/12189.
    // But we don't want to add dots for local names from /etc/hosts.
    // It's hard to tell so we settle on the heuristic that names without dots
    // (like "localhost" or "myhost") do not get trailing dots, but any other
    // names do.
    func absDomainName(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/net/conf.go

    	}
    
    	// Canonicalize the hostname by removing any trailing dot.
    	hostname = stringslite.TrimSuffix(hostname, ".")
    
    	nss := getSystemNSS()
    	srcs := nss.sources["hosts"]
    	// If /etc/nsswitch.conf doesn't exist or doesn't specify any
    	// sources for "hosts", assume Go's DNS will work fine.
    	if errors.Is(nss.err, fs.ErrNotExist) || (nss.err == nil && len(srcs) == 0) {
    		if canUseCgo && c.goos == "solaris" {
    			// illumos defaults to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. istioctl/pkg/precheck/precheck.go

    	}
    	for _, vs := range virtualServices.Items {
    		for _, hostname := range vs.Spec.Hosts {
    			if host.Name(hostname).IsWildCarded() {
    				res := ObjectToInstance(vs)
    				messages.Add(msg.NewUpdateIncompatibility(res,
    					"PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING", "1.20",
    					"previously, VirtualServices with overlapping wildcard hosts would have the oldest "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix.go

    		names = append(names, name)
    	}
    	return names
    }
    
    // hostLookupOrder specifies the order of LookupHost lookup strategies.
    // It is basically a simplified representation of nsswitch.conf.
    // "files" means /etc/hosts.
    type hostLookupOrder int
    
    const (
    	// hostLookupCgo means defer to cgo.
    	hostLookupCgo      hostLookupOrder = iota
    	hostLookupFilesDNS                 // files first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top