Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for logback (0.15 sec)

  1. src/net/interface.go

    	FlagLoopback                       // interface is a loopback interface
    	FlagPointToPoint                   // interface belongs to a point-to-point link
    	FlagMulticast                      // interface supports multicast access capability
    	FlagRunning                        // interface is in running state
    )
    
    var flagNames = []string{
    	"up",
    	"broadcast",
    	"loopback",
    	"pointtopoint",
    	"multicast",
    	"running",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. pkg/proxy/metrics/metrics.go

    	// by iptables which were destined for nodeports on loopback interface.
    	localhostNodePortsAcceptedPacketsDescription = metrics.NewDesc(
    		"kubeproxy_iptables_localhost_nodeports_accepted_packets_total",
    		"Number of packets accepted on nodeports of loopback interface",
    		nil, nil, metrics.ALPHA, "")
    	LocalhostNodePortAcceptedNFAcctCounter     = "localhost_nps_accepted_pkts"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    			linkLocalUnicast: true,
    		},
    		{
    			name:     "loopback v4Addr",
    			ip:       loopback4,
    			loopback: true,
    		},
    		{
    			name:     "loopback v6Addr",
    			ip:       IPv6Loopback(),
    			loopback: true,
    		},
    		{
    			name:     "loopback v6 mapped v4Addr",
    			ip:       AddrFrom16(IPv6Loopback().As16()),
    			loopback: true,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    // if the loopback client config is specified AND it has a bearer token. Note that if either authn or
    // authz is nil, this function won't add a token authenticator or authorizer.
    func AuthorizeClientBearerToken(loopback *restclient.Config, authn *AuthenticationInfo, authz *AuthorizationInfo) {
    	if loopback == nil || len(loopback.BearerToken) == 0 {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. cmd/net.go

    	}
    
    	return ipList, err
    }
    
    // sortIPs - sort ips based on higher octets.
    // The logic to sort by last octet is implemented to
    // prefer CIDRs with higher octets, this in-turn skips the
    // localhost/loopback address to be not preferred as the
    // first ip on the list. Subsequently this list helps us print
    // a user friendly message with appropriate values.
    func sortIPs(ipList []string) []string {
    	if len(ipList) == 1 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/net/net_windows_test.go

    	//    Default Gateway:                      10.0.0.254
    	//    Gateway Metric:                       0
    	//    InterfaceMetric:                      10
    	//
    	//Configuration for interface "Loopback Pseudo-Interface 1"
    	//    DHCP enabled:                         No
    	//    IP Address:                           127.0.0.1
    	//    Subnet Prefix:                        127.0.0.0/8 (mask 255.0.0.0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. internal/http/dial_linux.go

    				if h, _, err := net.SplitHostPort(address); err == nil {
    					address = h
    				}
    				// Create socket on specific vrf device.
    				// To catch all kinds of special cases this filters specifically for loopback networks.
    				if ip := net.ParseIP(address); ip != nil && !ip.IsLoopback() {
    					_ = syscall.SetsockoptString(fd, syscall.SOL_SOCKET, syscall.SO_BINDTODEVICE, opts.Interface)
    				}
    			}
    		})
    		return nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  8. cmd/kubeadm/app/preflight/checks_test.go

    	var tests = []struct {
    		name           string
    		check          HTTPProxyCheck
    		expectWarnings bool
    	}{
    		{
    			name: "Loopback address",
    			check: HTTPProxyCheck{
    				Proto: "https",
    				Host:  "127.0.0.1",
    			}, // Loopback addresses never should produce proxy warnings
    			expectWarnings: false,
    		},
    		{
    			name: "IPv4 direct access",
    			check: HTTPProxyCheck{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    `,
    			expectedHostsFileContent: `# Kubernetes-managed hosts file (host network).
    # hosts file for testing.
    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. cmd/endpoint.go

    func hostResolveToLocalhost(endpoint Endpoint) bool {
    	hostIPs, err := getHostIP(endpoint.Hostname())
    	if err != nil {
    		return false
    	}
    	var loopback int
    	for _, hostIP := range hostIPs.ToSlice() {
    		if net.ParseIP(hostIP).IsLoopback() {
    			loopback++
    		}
    	}
    	return loopback == len(hostIPs)
    }
    
    // UpdateIsLocal - resolves the host and discovers the local host.
    func (endpoints Endpoints) UpdateIsLocal() error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top