Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for IPV4 (0.07 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	IF_TYPE_TUNNEL             = 131
    	IF_TYPE_IEEE1394           = 144
    )
    
    type SocketAddress struct {
    	Sockaddr       *syscall.RawSockaddrAny
    	SockaddrLength int32
    }
    
    // IP returns an IPv4 or IPv6 address, or nil if the underlying SocketAddress is neither.
    func (addr *SocketAddress) IP() net.IP {
    	if uintptr(addr.SockaddrLength) >= unsafe.Sizeof(RawSockaddrInet4{}) && addr.Sockaddr.Addr.Family == AF_INET {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.4.md

    * The pod annotation `security.alpha.kubernetes.io/sysctls` now allows customization of namespaced and well isolated kernel parameters (sysctls), starting with `kernel.shm_rmid_forced`, `net.ipv4.ip_local_port_range` and `net.ipv4.tcp_syncookies` for Kubernetes 1.4. ([#27180](https://github.com/kubernetes/kubernetes/pull/27180), [@sttts](https://github.com/sttts))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                  {{- if .KubeVersion122 }}
                  {{/* safe since 1.22: https://github.com/kubernetes/kubernetes/pull/103326. */}}
                  securityContext:
                    sysctls:
                    - name: net.ipv4.ip_unprivileged_port_start
                      value: "0"
                  {{- end }}
                  serviceAccountName: {{.ServiceAccount | quote}}
                  containers:
                  - name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    		// allowAltNodeIP is true if we expect NodePort traffic on the alternate
    		// node IP to be accepted
    		allowAltNodeIP bool
    	}{
    		{
    			name: "ipv4",
    
    			family:            v1.IPv4Protocol,
    			nodePortAddresses: nil,
    
    			allowAltNodeIP: false,
    		},
    		{
    			name: "ipv4, multiple nodeport-addresses",
    
    			family:            v1.IPv4Protocol,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	var buffer bytes.Buffer
    	buffer.WriteString(managedHostsHeader)
    	buffer.WriteString("127.0.0.1\tlocalhost\n")                      // ipv4 localhost
    	buffer.WriteString("::1\tlocalhost ip6-localhost ip6-loopback\n") // ipv6 localhost
    	buffer.WriteString("fe00::0\tip6-localnet\n")
    	buffer.WriteString("fe00::0\tip6-mcastprefix\n")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "ip": {
              "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod",
              "type": "string"
            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.PodReadinessGate": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      echo "Configuring IP firewall rules"
    
      # Do not consider loopback addresses as martian source or destination while
      # routing. This enables the use of 127/8 for local routing purposes.
      sysctl -w net.ipv4.conf.all.route_localnet=1
    
      # The GCI image has host firewall which drop most inbound/forwarded packets.
      # We need to add rules to accept all TCP/UDP/ICMP/SCTP packets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
Back to top