Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for friendlyName (0.14 sec)

  1. istioctl/pkg/precheck/precheck.go

    	return "Cluster"
    }
    
    func (o clusterOrigin) String() string {
    	return ""
    }
    
    func (o clusterOrigin) FriendlyName() string {
    	return "Cluster"
    }
    
    func (o clusterOrigin) Comparator() string {
    	return o.FriendlyName()
    }
    
    func (o clusterOrigin) Namespace() resource.Namespace {
    	return ""
    }
    
    func (o clusterOrigin) Reference() resource.Reference {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/syscall_windows.go

    	FirstAnycastAddress    *IpAdapterAnycastAddress
    	FirstMulticastAddress  *IpAdapterMulticastAddress
    	FirstDnsServerAddress  *IpAdapterDnsServerAdapter
    	DnsSuffix              *uint16
    	Description            *uint16
    	FriendlyName           *uint16
    	PhysicalAddress        [syscall.MAX_ADAPTER_ADDRESS_LENGTH]byte
    	PhysicalAddressLength  uint32
    	Flags                  uint32
    	Mtu                    uint32
    	IfType                 uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    	result := make([]message, 0)
    	for _, m := range msgs {
    		expMsg := message{
    			messageType: m.Type,
    		}
    		if m.Resource != nil {
    			expMsg.origin = m.Resource.Origin.FriendlyName()
    		}
    
    		result = append(result, expMsg)
    	}
    	return result
    }
    
    func prettyPrintMessages(msgs diag.Messages) string {
    	var sb strings.Builder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top