Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 154 for logback (0.12 sec)

  1. cmd/kube-controller-manager/app/config/config.go

    type Config struct {
    	ComponentConfig kubectrlmgrconfig.KubeControllerManagerConfiguration
    
    	SecureServing *apiserver.SecureServingInfo
    	// LoopbackClientConfig is a config for a privileged loopback connection
    	LoopbackClientConfig *restclient.Config
    
    	Authentication apiserver.AuthenticationInfo
    	Authorization  apiserver.AuthorizationInfo
    
    	// the general kube client
    	Client *clientset.Clientset
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 31 09:32:21 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/netlink_linux.go

    		ips = append(ips, addr.IP.String())
    	}
    	return ips, nil
    }
    
    // GetAllLocalAddresses return all local addresses on the node.
    // Only the addresses of the current family are returned.
    // IPv6 link-local and loopback addresses are excluded.
    func (h *netlinkHandle) GetAllLocalAddresses() (sets.Set[string], error) {
    	addr, err := net.InterfaceAddrs()
    	if err != nil {
    		return nil, fmt.Errorf("Could not get addresses: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 30 16:18:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/config/validation.go

    	ipp, err := netip.ParsePrefix(cidr)
    	if err != nil {
    		return fmt.Errorf("failed to parse CIDR %s: %v", cidr, err)
    	}
    
    	if !ipp.Addr().Is4() || !ipp.Addr().IsLoopback() {
    		return fmt.Errorf("expected valid IPv4 loopback address in CIDR %s; found %v", cidr, ipp.Addr())
    	}
    
    	ones := ipp.Bits()
    	if ones < 8 || ones > 32 {
    		return fmt.Errorf("expected CIDR %s to have mask in range [8, 32]; found %v", cidr, ones)
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 02:38:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/process/JavaDebugOptions.java

        /**
         * Host address to listen on or connect to when debug is enabled. By default, no host is set.
         *
         * <p>
         * When run in {@link #getServer() server} mode, the process listens on the loopback address on Java 9+ and all interfaces on Java 8 and below by default.
         * Setting host to {@code *} will make the process listen on all network interfaces. This is not supported on Java 8 and below.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 14:16:38 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/run_test.go

    				cfg.OwnerGroupsExclude = "888,ftp"
    			},
    		},
    		{
    			"outbound-ports-include",
    			func(cfg *config.Config) {
    				cfg.OutboundPortsInclude = "32000,31000"
    			},
    		},
    		{
    			"loopback-outbound-iprange",
    			func(cfg *config.Config) {
    				cfg.OutboundIPRangesInclude = "127.1.2.3/32"
    				cfg.DryRun = true
    				cfg.RedirectDNS = true
    				cfg.DNSServersV4 = []string{"127.0.0.53"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/config/config.go

    type Config struct {
    	// ComponentConfig is the scheduler server's configuration object.
    	ComponentConfig kubeschedulerconfig.KubeSchedulerConfiguration
    
    	// LoopbackClientConfig is a config for a privileged loopback connection
    	LoopbackClientConfig *restclient.Config
    
    	Authentication apiserver.AuthenticationInfo
    	Authorization  apiserver.AuthorizationInfo
    	SecureServing  *apiserver.SecureServingInfo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 09:38:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/run.go

    			// Envoy. Any packet entering this chain gets marked with the ${INBOUND_TPROXY_MARK} mark,
    			// so that they get routed to the loopback interface in order to get redirected to Envoy.
    			// In the ISTIOINBOUND chain, '-j ISTIODIVERT' reroutes to the loopback
    			// interface.
    			// Mark all inbound packets.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/builtin.go

    			if priv_group == attr_group {
    				return authorizer.DecisionAllow, "", nil
    			}
    		}
    	}
    	return authorizer.DecisionNoOpinion, "", nil
    }
    
    // NewPrivilegedGroups is for use in loopback scenarios
    func NewPrivilegedGroups(groups ...string) *privilegedGroupAuthorizer {
    	return &privilegedGroupAuthorizer{
    		groups: groups,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  9. 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)
  10. tools/istio-iptables/pkg/capture/run_linux.go

    					return fmt.Errorf("failed to configure netlink rule: %v", err)
    				}
    			}
    			// In routing table ${INBOUND_TPROXY_ROUTE_TABLE}, create a single default rule to route all traffic to
    			// the loopback interface.
    			// Equivalent to `ip route add local default dev lo table <table>`
    			cidrs := []string{"0.0.0.0/0"}
    			if cfg.EnableIPv6 {
    				cidrs = append(cidrs, "0::0/0")
    			}
    			for _, fullCIDR := range cidrs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top