Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 274 for lmhosts (2.64 sec)

  1. build/root/Makefile

    #    default built-in spec (system.DefaultSpec) will be used.
    #  IMAGES: For REMOTE=true only.  Comma delimited list of images for creating
    #    remote hosts to run tests against.  Defaults to a recent image.
    #  HOSTS: For REMOTE=true only.  Comma delimited list of running gce hosts to
    #    run tests against.  Defaults to "".
    #  DELETE_INSTANCES: For REMOTE=true only.  Delete any instances created as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. internal/grid/manager.go

    type ManagerOptions struct {
    	Dialer       ContextDialer               // Outgoing dialer.
    	Local        string                      // Local host name.
    	Hosts        []string                    // All hosts, including local in the grid.
    	AddAuth      AuthFn                      // Add authentication to the given audience.
    	AuthRequest  func(r *http.Request) error // Validate incoming requests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/net/cgo_unix.go

    		}
    	}
    }
    
    func cgoLookupHost(ctx context.Context, name string) (hosts []string, err error) {
    	addrs, err := cgoLookupIP(ctx, "ip", name)
    	if err != nil {
    		return nil, err
    	}
    	for _, addr := range addrs {
    		hosts = append(hosts, addr.String())
    	}
    	return hosts, nil
    }
    
    func cgoLookupPort(ctx context.Context, network, service string) (port int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pkg/proxy/endpointslicecache_test.go

    			},
    		}
    
    		if len(hosts) > 0 {
    			hostname := hosts[i%len(hosts)]
    			endpoint.NodeName = &hostname
    		}
    
    		endpointSlice.Endpoints = append(endpointSlice.Endpoints, endpoint)
    	}
    
    	return endpointSlice
    }
    
    func generateEndpointSlice(serviceName, namespace string, sliceNum, numEndpoints, unreadyMod int, terminatingMod int, hosts []string, portNums []*int32) *discovery.EndpointSlice {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NbtAddress.java

    /*
     * This is a special name that means all hosts. If you wish to find all hosts
     * on a network querying a workgroup group name is the preferred method.
     */ 
    
        static final String ANY_HOSTS_NAME = "*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000";
    
    /** 
     * This is a special name for querying the master browser that serves the
     * list of hosts found in "Network Neighborhood".
     */ 
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  6. docs/features/https.md

    HTTPS
    =====
    
    OkHttp attempts to balance two competing concerns:
    
     * **Connectivity** to as many hosts as possible. That includes advanced hosts that run the latest versions of [boringssl](https://boringssl.googlesource.com/boringssl/) and less out of date hosts running older versions of [OpenSSL](https://www.openssl.org/).
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. src/archive/tar/strconv_test.go

    	vectors := []struct {
    		in      string
    		wantRes string
    		wantKey string
    		wantVal string
    		ok      bool
    	}{
    		{"6 k=v\n\n", "\n", "k", "v", true},
    		{"19 path=/etc/hosts\n", "", "path", "/etc/hosts", true},
    		{"210 path=" + longName + "\nabc", "abc", "path", longName, true},
    		{"110 path=" + medName + "\n", "", "path", medName, true},
    		{"9 foo=ba\n", "", "foo", "ba", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/types.go

    type IngressTLS struct {
    	// hosts is a list of hosts included in the TLS certificate. The values in
    	// this list must match the name/s used in the tlsSecret. Defaults to the
    	// wildcard host setting for the loadbalancer controller fulfilling this
    	// Ingress, if left unspecified.
    	// +optional
    	// +listType=atomic
    	Hosts []string `json:"hosts,omitempty" protobuf:"bytes,1,rep,name=hosts"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/util/util.go

    		},
    	}
    }
    
    // SortVirtualHosts sorts a slice of virtual hosts by name.
    //
    // Envoy computes a hash of RDS to see if things have changed - hash is affected by order of elements in the filter. Therefore
    // we sort virtual hosts by name before handing them back so the ordering is stable across HTTP Route Configs.
    func SortVirtualHosts(hosts []*route.VirtualHost) {
    	if len(hosts) < 2 {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. cmd/endpoint.go

    		}
    	}
    	return foundSet.ToSlice()
    }
    
    // hostsSorted will return all hosts found.
    // The LOCAL host will be nil, but the indexes of all hosts should
    // remain consistent across the cluster.
    func (l EndpointServerPools) hostsSorted() []*xnet.Host {
    	peers, localPeer := l.peers()
    	sort.Strings(peers)
    	hosts := make([]*xnet.Host, len(peers))
    	for i, hostStr := range peers {
    		if hostStr == localPeer {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top