Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 193 for lmhosts (0.15 sec)

  1. src/net/http/fs_test.go

    		}
    	}
    	test(Dir("/etc/"), "/hosts")
    	test(Dir("/etc/"), "hosts")
    	test(Dir("/etc/"), "../../../../hosts")
    	test(Dir("/etc"), "/hosts")
    	test(Dir("/etc"), "hosts")
    	test(Dir("/etc"), "../../../../hosts")
    
    	// Not really directories, but since we use this trick in
    	// ServeFile, test it:
    	test(Dir("/etc/hosts"), "")
    	test(Dir("/etc/hosts"), "/")
    	test(Dir("/etc/hosts"), "../")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. cmd/object-api-utils.go

    	return bucketName == minioReservedBucket
    }
    
    // returns a slice of hosts by reading a slice of DNS records
    func getHostsSlice(records []dns.SrvRecord) []string {
    	hosts := make([]string, len(records))
    	for i, r := range records {
    		hosts[i] = net.JoinHostPort(r.Host, string(r.Port))
    	}
    	return hosts
    }
    
    // returns an online host (and corresponding port) from a slice of DNS records
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/conversion.go

    func ServiceToServiceEntry(svc *model.Service, proxy *model.Proxy) *config.Config {
    	gvk := gvk.ServiceEntry
    	se := &networking.ServiceEntry{
    		// Host is fully qualified: name, namespace, domainSuffix
    		Hosts: []string{string(svc.Hostname)},
    
    		// Internal Service and K8S Service have a single Address.
    		// ServiceEntry can represent multiple - but we are not using that. SE may be merged.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/workload.go

    			} else if len(ingress.Spec.ExternalIPs) > 0 {
    				ingressIP = ingress.Spec.ExternalIPs[0]
    			}
    			// TODO: add case where the load balancer is a DNS name
    		}
    	}
    
    	var hosts string
    	if netutil.IsValidIPAddress(ingressIP) {
    		hosts = fmt.Sprintf("%s %s\n", ingressIP, IstiodHost(istioNamespace, revision))
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    				diskMap[k] = struct{}{}
    			}
    		}
    	}
    	jobID := r.Form.Get("by-jobID")
    
    	hosts := strings.Split(r.Form.Get("hosts"), ",")
    	byHost := strings.EqualFold(r.Form.Get("by-host"), "true")
    	var hostMap map[string]struct{}
    	if len(hosts) > 0 && hosts[0] != "" {
    		hostMap = make(map[string]struct{}, len(hosts))
    		for _, k := range hosts {
    			if k != "" {
    				hostMap[k] = struct{}{}
    			}
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

        description: "Gateway should not have the same selector, port and matched hosts of server"
        template: "Conflict with gateways %s (workload selector %s, port %s, hosts %v)."
        args:
          - name: gateway
            type: string
          - name: selector
            type: string
          - name: portnumber
            type: string
          - name: hosts
            type: string
    
      - name: "ImageAutoWithoutInjectionWarning"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/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.
    	// +listType=atomic
    	// +optional
    	Hosts []string `json:"hosts,omitempty" protobuf:"bytes,1,rep,name=hosts"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    					Port: &networking.SidecarPort{
    						Number:   15021,
    						Protocol: "GRPC",
    						Name:     "http",
    					},
    					Hosts: []string{"*/*"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						Number:   15001,
    						Protocol: "HTTP",
    						Name:     "http",
    					},
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	testcases := []struct {
    		name             string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceregistry_test.go

    		Meta: config.Meta{
    			Name:             "service-entry",
    			Namespace:        namespace,
    			GroupVersionKind: gvk.ServiceEntry,
    			Domain:           "cluster.local",
    		},
    		Spec: &networking.ServiceEntry{
    			Hosts: []string{"service.namespace.svc.cluster.local"},
    			Ports: []*networking.ServicePort{port},
    			WorkloadSelector: &networking.WorkloadSelector{
    				Labels: labels,
    			},
    			Resolution: networking.ServiceEntry_STATIC,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. internal/grid/grid_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    	grid, err := SetupTestGrid(2)
    	errFatal(err)
    	t.Cleanup(grid.Cleanup)
    
    	local := grid.Managers[0]
    	localHost := grid.Hosts[0]
    	remote := grid.Managers[1]
    	remoteHost := grid.Hosts[1]
    
    	connLocalToRemote := local.Connection(remoteHost)
    	connRemoteLocal := remote.Connection(localHost)
    
    	t.Run("testStreamRoundtrip", func(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top