Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 154 for logback (0.09 sec)

  1. cni/pkg/iptables/iptables_linux.go

    		if err != nil {
    			return fmt.Errorf("parse CIDR: %v", err)
    		}
    
    		netlinkRoutes := []*netlink.Route{
    			// In routing table ${INBOUND_TPROXY_ROUTE_TABLE}, create a single default rule to route all traffic to
    			// the loopback interface.
    			// Equiv: "ip route add local 0.0.0.0/0 dev lo table 100"
    			{
    				Dst:       localhostDst,
    				Scope:     netlink.SCOPE_HOST,
    				Type:      unix.RTN_LOCAL,
    				Table:     RouteTableInbound,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K 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. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatory.java

                args.add(keyName);
            }
            if (passphrase != null) {
                if (useLegacyGpg) {
                    args.add("--no-use-agent");
                } else {
                    args.add("--pinentry-mode=loopback");
                }
                args.add("--passphrase-fd");
                args.add("0");
            } else {
                if (useLegacyGpg) {
                    args.add("--use-agent");
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/util/config/common.go

    	// use only link-local addresses (e.g. as described in RFC5549).
    	// In many cases that matching global unicast IP address can be found on loopback interface,
    	// so kubeadm allows users to specify address=Loopback for handling supporting the scenario above.
    	// Nb. SetAPIEndpointDynamicDefaults will try to translate loopback to a valid address afterwards
    	if ip.IsLoopback() {
    		return nil
    	}
    	if !ip.IsGlobalUnicast() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. 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)
  8. cmd/kubeadm/app/util/config/initconfiguration.go

    		return errors.Errorf("couldn't use \"%s\" as \"apiserver-advertise-address\", must be ipv4 or ipv6 address", cfg.AdvertiseAddress)
    	}
    
    	// kubeadm allows users to specify address=Loopback as a selector for global unicast IP address that can be found on loopback interface.
    	// e.g. This is required for network setups where default routes are present, but network interfaces use only link-local addresses (e.g. as described in RFC5549).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. 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)
  10. pkg/registry/rbac/escalation_check.go

    func EscalationAllowed(ctx context.Context) bool {
    	u, ok := genericapirequest.UserFrom(ctx)
    	if !ok {
    		return false
    	}
    
    	// system:masters is special because the API server uses it for privileged loopback connections
    	// therefore we know that a member of system:masters can always do anything
    	for _, group := range u.GetGroups() {
    		if group == user.SystemPrivilegedGroup {
    			return true
    		}
    	}
    
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 4.3K bytes
    - Viewed (0)
Back to top