Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 179 for lmhosts (0.27 sec)

  1. cmd/peer-rest-server.go

    	}
    
    	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),
    	})
    	return madminRealtimeMetrics.NewJSONWith(&info), nil
    }
    
    // GetSysConfigHandler - returns system config information.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    			vcs.VCSTestHosts = vcstest.Hosts
    			vcsTestTLSHost := os.Getenv("TESTGO_VCSTEST_TLS_HOST")
    			vcsTestClient, err := vcstest.TLSClient(os.Getenv("TESTGO_VCSTEST_CERT"))
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "loading certificates from $TESTGO_VCSTEST_CERT: %v", err)
    			}
    			var interceptors []web.Interceptor
    			for _, host := range vcstest.Hosts {
    				interceptors = append(interceptors,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. internal/grid/connection.go

    		c.baseFlags |= FlagCRCxxh3
    	}
    	if o.publisher != nil {
    		c.traceRequests(o.publisher)
    	}
    	if o.local == o.remote {
    		panic("equal hosts")
    	}
    	if c.shouldConnect() {
    		c.side = ws.StateClientSide
    
    		go func() {
    			if o.blockConnect != nil {
    				<-o.blockConnect
    			}
    			c.connect()
    		}()
    	}
    	if debugPrint {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // If specified, the pod's tolerations.
      // +optional
      // +listType=atomic
      repeated Toleration tolerations = 22;
    
      // HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts
      // file if specified.
      // +optional
      // +patchMergeKey=ip
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=ip
      repeated HostAlias hostAliases = 23;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. src/net/http/clientserver_test.go

    	if !bytes.Equal(gotBody, wantBody) {
    		t.Fatalf("got response body: %q; want %q", gotBody, wantBody)
    	}
    }
    
    // Verify that both our HTTP/1 and HTTP/2 request and auto-decompress gzip.
    // Some hosts send gzip even if you don't ask for it; see golang.org/issue/13298
    func TestH12_AutoGzip(t *testing.T) {
    	h12Compare{
    		Handler: func(w ResponseWriter, r *Request) {
    			if ae := r.Header.Get("Accept-Encoding"); ae != "gzip" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    // HTTPS, and HTTP proxies (for either HTTP or HTTPS with CONNECT).
    //
    // By default, Transport caches connections for future re-use.
    // This may leave many open connections when accessing many hosts.
    // This behavior can be managed using [Transport.CloseIdleConnections] method
    // and the [Transport.MaxIdleConnsPerHost] and [Transport.DisableKeepAlives] fields.
    //
    // Transports should be reused instead of created as needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      // Create a temporary parallel_execute. This is temporary because the result
      // type is not determined until after it is filled. The parallel_execute has
      // `num_host_regions` assigned to hosts and 1 region for the Device cluster.
      // In the ordinary outside compilation case `num_host_regions` is 1 and in the
      // `map_outside_compilation` case `num_host_regions == num_cores_per_replica`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. src/net/netip/netip.go

    	}
    	return false // zero value
    }
    
    // IsLoopback reports whether ip is a loopback address.
    func (ip Addr) IsLoopback() bool {
    	if ip.Is4In6() {
    		ip = ip.Unmap()
    	}
    
    	// Requirements for Internet Hosts -- Communication Layers (3.2.1.3 Addressing)
    	// https://datatracker.ietf.org/doc/html/rfc1122#section-3.2.1.3
    	if ip.Is4() {
    		return ip.v4(0) == 127
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // also be an IP address.
      //
      // Please note that using `localhost` or `127.0.0.1` as a `host` is
      // risky unless you take great care to run this webhook on all hosts
      // which run an apiserver which might need to make calls to this
      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	// and this field is not needed by Handlers.
    	//
    	// For client requests, setting this field prevents re-use of
    	// TCP connections between requests to the same hosts, as if
    	// Transport.DisableKeepAlives were set.
    	Close bool
    
    	// For server requests, Host specifies the host on which the
    	// URL is sought. For HTTP/1 (per RFC 7230, section 5.4), this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top