Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for FQDN (0.14 sec)

  1. src/net/lookup_test.go

    // mDNS, and may use platform-dependent DNS stub resolver if possible.
    // The APIs accept any of forms for a query; host name in various
    // encodings, UTF-8 encoded net name, domain name, FQDN or absolute
    // FQDN, but the result would be one of the forms and it depends on
    // the circumstances.
    
    var lookupGoogleSRVTests = []struct {
    	service, proto, name string
    	cname, target        string
    }{
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/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 auth Credentials suitable for accessing the SID's information.
         */
        public void resolve(String authorityServerName,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    // Service describes an Istio service (e.g., catalog.mystore.com:8080)
    // Each service has a fully qualified domain name (FQDN) and one or more
    // ports where the service is listening for connections. *Optionally*, a
    // service can have a single load balancer/virtual IP address associated
    // with it, such that the DNS queries for the FQDN resolves to the virtual
    // IP address (a load balancer IP).
    //
    // E.g., in kubernetes, a service foo is associated with
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. cluster/gce/config-test.sh

    # with configurations that support non-traditional KSA authentication methods,
    # this value may make sense, but if the expectation is traditional OIDC, don't
    # use this value in production. If you do use it, the FQDN is preferred to
    # kubernetes.default.svc, to avoid something outside the cluster attempting
    # to resolve the partially qualified name.
    export SERVICEACCOUNT_ISSUER='https://kubernetes.default.svc.cluster.local'
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    func buildServiceMetadata(svc *model.Service) *structpb.Value {
    	return &structpb.Value{
    		Kind: &structpb.Value_StructValue{
    			StructValue: &structpb.Struct{
    				Fields: map[string]*structpb.Value{
    					// service fqdn
    					"host": {
    						Kind: &structpb.Value_StringValue{
    							StringValue: string(svc.Hostname),
    						},
    					},
    					// short name of the service
    					"name": {
    						Kind: &structpb.Value_StringValue{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. cmd/common-main.go

    	} else {
    		// Explicitly set 127.0.0.1 so Console will automatically bypass TLS verification to the local S3 API.
    		// This will save users from providing a certificate with IP or FQDN SAN that points to the local host.
    		os.Setenv("CONSOLE_MINIO_SERVER", fmt.Sprintf("%s://127.0.0.1:%s", getURLScheme(globalIsTLS), globalMinioPort))
    	}
    	if value := env.Get(config.EnvMinIOLogQueryURL, ""); value != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller.go

    	// If this service entry had endpoints with IPs (i.e. resolution STATIC), then we do EDS update.
    	// If the service entry had endpoints with FQDNs (i.e. resolution DNS), then we need to do
    	// full push (as fqdn endpoints go via strict_dns clusters in cds).
    	if len(unchangedSvcs) > 0 {
    		if isDNSTypeServiceEntry(currentServiceEntry) {
    			for _, svc := range unchangedSvcs {
    				configsUpdated.Insert(makeConfigKey(svc))
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    	// Standard PROXY source and destination information
    	// is included, along with potential extra TLV headers:
    	// 0xD0 - The SPIFFE identity of the source workload
    	// 0xD1 - The FQDN or Hostname of the targeted Service
    	ApplicationTunnel_PROXY ApplicationTunnel_Protocol = 1
    )
    
    // Enum value maps for ApplicationTunnel_Protocol.
    var (
    	ApplicationTunnel_Protocol_name = map[int32]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top