Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for Fqdn (0.03 sec)

  1. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    	"endpoints":   "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // immutable after creation. The following address types are currently
      // supported:
      // * IPv4: Represents an IPv4 Address.
      // * IPv6: Represents an IPv6 Address.
      // * FQDN: Represents a Fully Qualified Domain Name.
      optional string addressType = 4;
    
      // endpoints is a list of unique endpoints in this slice. Each slice may
      // include a maximum of 1000 endpoints.
      // +listType=atomic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    		// https://github.com/kubernetes-sigs/gateway-api/pull/614
    		fqdn := addr.Value
    		if !strings.Contains(fqdn, ".") {
    			// Short name, expand it
    			fqdn = fmt.Sprintf("%s.%s.svc.%s", fqdn, obj.Namespace, r.Domain)
    		}
    		gatewayServices = append(gatewayServices, fqdn)
    	}
    	if len(skippedAddresses) > 0 {
    		// Give error but return services, this is a soft failure
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix_test.go

    		}
    
    		switch q.Questions[0].Name.String() {
    		case fqdn + ".servfail.":
    			r.Header.RCode = dnsmessage.RCodeServerFailure
    		default:
    			r.Header.RCode = dnsmessage.RCodeNameError
    		}
    
    		return r, nil
    	}}
    
    	cases := []struct {
    		strictErrors bool
    		wantErr      *DNSError
    	}{
    		{true, &DNSError{Name: fqdn, Err: "server misbehaving", IsTemporary: true}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    	"endpoints":   "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1/generated.proto

      // immutable after creation. The following address types are currently
      // supported:
      // * IPv4: Represents an IPv4 Address.
      // * IPv6: Represents an IPv6 Address.
      // * FQDN: Represents a Fully Qualified Domain Name.
      optional string addressType = 4;
    
      // endpoints is a list of unique endpoints in this slice. Each slice may
      // include a maximum of 1000 endpoints.
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/Kerb5Authenticator.java

                // While we could look up the domain controller/KDC we cannot really make the java kerberos implementation
                // use a KDC of our choice.
                // A potential workaround would be to try to get the server FQDN by reverse lookup, but this might have
                // security implications and also is not how Microsoft does it.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  8. tests/integration/ambient/waypoint_test.go

      annotations:
        networking.istio.io/address-type: IPAddress
        networking.istio.io/service-type: ClusterIP
    spec:
      gatewayClassName: istio
      listeners:
      - name: {{.Service}}-fqdn
        hostname: {{.Service}}.{{.Namespace}}.svc.cluster.local
        port: {{.Port}}
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Same
      - name: {{.Service}}-svc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SID.java

         * SID and therefore cannot possibly resolve it automatically. In this case,
         * this method will be necessary.
         * 
         * @param authorityServerName
         *            The FQDN of the server that is an authority for the SID.
         * @param tc
         *            Context to use
         * @throws IOException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/memory/discovery.go

    type ServiceDiscovery struct {
    	services map[host.Name]*model.Service
    
    	handlers model.ControllerHandlers
    
    	networkGateways []model.NetworkGateway
    	model.NetworkGatewaysHandler
    
    	// EndpointShards table. Key is the fqdn of the service, ':', port
    	instancesByPortNum  map[string][]*model.ServiceInstance
    	instancesByPortName map[string][]*model.ServiceInstance
    
    	// Used by GetProxyServiceInstance, used to configure inbound (list of services per IP)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top