Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 82 for FQDN (0.13 sec)

  1. cmd/endpoint.go

    			if filepath.VolumeName(u.Path[1:]) != "" {
    				u.Path = u.Path[1:]
    			}
    		}
    
    	} else {
    		// Only check if the arg is an ip address and ask for scheme since its absent.
    		// localhost, example.com, any FQDN cannot be disambiguated from a regular file path such as
    		// /mnt/export1. So we go ahead and start the minio server in FS modes in these cases.
    		if isHostIP(arg) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    	for _, pm := range metrics {
    		mmap := ps.ProxyStatus[pm.Name()]
    		pm.Record(float64(len(mmap)))
    	}
    }
    
    // It is called after virtual service short host name is resolved to FQDN
    func virtualServiceDestinations(v *networking.VirtualService) map[string]sets.Set[int] {
    	if v == nil {
    		return nil
    	}
    
    	out := make(map[string]sets.Set[int])
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		{"a.com": []byte("bar")},
    		{"k8s.io": []byte("bar")},
    		{"dev.k8s.io": []byte("bar")},
    		{"dev.k8s.io.": []byte("bar")},
    		{"foo.example.com": []byte("bar")},
    		{"this.is.a.really.long.fqdn": []byte("bar")},
    		{"bbc.co.uk": []byte("bar")},
    		{"10.0.0.1": []byte("bar")}, // DNS labels can start with numbers and there is no requirement for letters.
    		{"hyphens-are-good.k8s.io": []byte("bar")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    	Routes []*route.Route
    }
    
    // BuildSidecarVirtualHostWrapper creates virtual hosts from the given set of virtual Services
    // and a list of Services from the service registry. Services are indexed by FQDN hostnames.
    // The list of Services is also passed to allow maintaining consistent ordering.
    func BuildSidecarVirtualHostWrapper(routeCache *Cache, node *model.Proxy, push *model.PushContext, serviceRegistry map[host.Name]*model.Service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    	expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", []string{"1.2.3.4:80"}, nil)
    
    	// create an FQDN endpoint that should be ignored
    	createEndpointSliceWithType(t, s.KubeClient().Kube(), "slice1", "service",
    		namespace, []v1.EndpointPort{{Name: "http", Port: 80}}, []string{"foo.com"}, discovery.AddressTypeFQDN)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. src/crypto/x509/verify_test.go

    		currentTime:   1677615892,
    		dnsName:       "www.google.com",
    
    		expectedChains: [][]string{
    			{"www.google.com", "GTS CA 1C3", "GTS Root R1"},
    		},
    	},
    	{
    		name:          "Valid (fqdn)",
    		leaf:          googleLeaf,
    		intermediates: []string{gtsIntermediate},
    		roots:         []string{gtsRoot},
    		currentTime:   1677615892,
    		dnsName:       "www.google.com.",
    
    		expectedChains: [][]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  7. pkg/proxy/endpointschangetracker_test.go

    			paramRemoveSlice:       false,
    			expectedReturnVal:      false,
    			expectedCurrentChange:  nil,
    		},
    		// ensure that only valide address types are processed
    		"add an FQDN slice (invalid address type)": {
    			startingSlices: []*discovery.EndpointSlice{
    				generateEndpointSlice("svc1", "ns1", 1, 3, 999, 999, []string{"host1", "host2"}, []*int32{ptr.To[int32](80), ptr.To[int32](443)}),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).
      // In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).
      // In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN.
      // If a pod does not have FQDN, this has no effect.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).
    	// In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).
    	// In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN.
    	// If a pod does not have FQDN, this has no effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"os":        ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top