Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 154 for logback (0.13 sec)

  1. src/cmd/go/internal/vcs/vcs.go

    	VCSTestRepoURL string
    
    	// VCSTestHosts is the set of hosts supported by the vcs-test server.
    	VCSTestHosts []string
    
    	// VCSTestIsLocalHost reports whether the given URL refers to a local
    	// (loopback) host, such as "localhost" or "127.0.0.1:8080".
    	VCSTestIsLocalHost func(*urlpkg.URL) bool
    )
    
    var defaultSecureScheme = map[string]bool{
    	"https":   true,
    	"git+ssh": true,
    	"bzr+ssh": true,
    	"svn+ssh": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    	Passthrough = "allow_any"
    
    	// PassthroughFilterChain to catch traffic that doesn't match other filter chains.
    	PassthroughFilterChain = "PassthroughFilterChain"
    
    	// Inbound pass through cluster need to the bind the loopback ip address for the security and loop avoidance.
    	InboundPassthroughCluster = "InboundPassthroughCluster"
    
    	// IstioMetadataKey is the key under which metadata is added to a route or cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	// Guests have a unique CID, and hosts may have a well-known CID of:
    	//  - VMADDR_CID_HYPERVISOR: refers to the hypervisor process.
    	//  - VMADDR_CID_LOCAL: refers to local communication (loopback).
    	//  - VMADDR_CID_HOST: refers to other processes on the host.
    	CID  uint32
    	Port uint32
    	raw  RawSockaddrVM
    }
    
    func (sa *SockaddrVM) sockaddr() (unsafe.Pointer, _Socklen, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  4. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

       * replaced with [setDispatcher][dispatcher].
       */
      fun enqueue(response: MockResponse) = (dispatcher as QueueDispatcher).enqueueResponse(response)
    
      /**
       * Starts the server on the loopback interface for the given port.
       *
       * @param port the port to listen to, or 0 for any available port. Automated tests should always
       * use port 0 to avoid flakiness when a specific port is unavailable.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  5. src/net/netip/netip.go

    // IPv6LinkLocalAllRouters returns the IPv6 link-local all routers multicast
    // address ff02::2.
    func IPv6LinkLocalAllRouters() Addr { return AddrFrom16([16]byte{0: 0xff, 1: 0x02, 15: 0x02}) }
    
    // IPv6Loopback returns the IPv6 loopback address ::1.
    func IPv6Loopback() Addr { return AddrFrom16([16]byte{15: 0x01}) }
    
    // IPv6Unspecified returns the IPv6 unspecified address "::".
    func IPv6Unspecified() Addr { return Addr{z: z6noz} }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. cmd/common-main.go

    					domainIPs.Add(addr)
    				}
    			}
    			domainIPs.Add(endpoint)
    		}
    		updateDomainIPs(domainIPs)
    	} else {
    		// Add found interfaces IP address to global domain IPS,
    		// loopback addresses will be naturally dropped.
    		domainIPs := mustGetLocalIP4()
    		for _, host := range globalEndpoints.Hostnames() {
    			domainIPs.Add(host)
    		}
    		updateDomainIPs(domainIPs)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    	if localhostNodePorts {
    		// Set the route_localnet sysctl we need for exposing NodePorts on loopback addresses
    		// Refer to https://issues.k8s.io/90259
    		logger.Info("Setting route_localnet=1 to allow node-ports on localhost; to change this either disable iptables.localhostNodePorts (--iptables-localhost-nodeports) or set nodePortAddresses (--nodeport-addresses) to filter loopback addresses")
    		if err := proxyutil.EnsureSysctl(sysctl, sysctlRouteLocalnet, 1); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    		},
    		{
    			name:        "Invalid single --node-ip (using loopback)",
    			nodeIPs:     []net.IP{netutils.ParseIPSloppy("127.0.0.1")},
    			shouldError: true,
    		},
    		{
    			name:    "Dual --node-ips",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    		if proxy.EnableHBONEListen() {
    			clusters = append(clusters, configgen.buildInboundHBONEClusters())
    		}
    		// Pass through clusters for inbound traffic. These cluster bind loopback-ish src address to access node local service.
    		clusters = inboundPatcher.conditionallyAppend(clusters, nil, cb.buildInboundPassthroughCluster())
    		clusters = append(clusters, inboundPatcher.insertedClusters()...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status.go

    	// Honor IP limitations set in setNodeStatus()
    	if nodeIP.To4() == nil && nodeIP.To16() == nil {
    		return fmt.Errorf("nodeIP must be a valid IP address")
    	}
    	if nodeIP.IsLoopback() {
    		return fmt.Errorf("nodeIP can't be loopback address")
    	}
    	if nodeIP.IsMulticast() {
    		return fmt.Errorf("nodeIP can't be a multicast address")
    	}
    	if nodeIP.IsLinkLocalUnicast() {
    		return fmt.Errorf("nodeIP can't be a link-local unicast address")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top