Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for friendlyName (0.2 sec)

  1. pkg/config/analysis/local/istiod_analyze.go

    					continue FilterMessages
    				}
    			}
    		}
    
    		// Filter out any messages that match our suppressions.
    		for _, s := range suppressions {
    			if m.Resource == nil || s.Code != m.Type.Code() {
    				continue
    			}
    
    			if !glob.Glob(s.ResourceName, m.Resource.Origin.FriendlyName()) {
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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