Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for addPass (0.16 sec)

  1. prow/config/calico.yaml

                    description: This is the IPv4 source address to use on programmed
                      device routes. By default the source address is left blank, leaving
                      the kernel to choose the source address used.
                    type: string
                  deviceRouteSourceAddressIPv6:
                    description: This is the IPv6 source address to use on programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"ip":        "IP address of the host file entry.",
    	"hostnames": "Hostnames for the above IP address.",
    }
    
    func (HostAlias) SwaggerDoc() map[string]string {
    	return map_HostAlias
    }
    
    var map_HostIP = map[string]string{
    	"":   "HostIP represents a single IP address allocated to the host.",
    	"ip": "IP is the IP address assigned to the host",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NodeStatus status = 3;
    }
    
    // NodeAddress contains information for the node's address.
    message NodeAddress {
      // Node address type, one of Hostname, ExternalIP or InternalIP.
      optional string type = 1;
    
      // The node address.
      optional string address = 2;
    }
    
    // Node affinity is a group of node affinity scheduling rules.
    message NodeAffinity {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	NodeExternalDNS NodeAddressType = "ExternalDNS"
    )
    
    // NodeAddress contains information for the node's address.
    type NodeAddress struct {
    	// Node address type, one of Hostname, ExternalIP or InternalIP.
    	Type NodeAddressType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=NodeAddressType"`
    	// The node address.
    	Address string `json:"address" protobuf:"bytes,2,opt,name=address"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	Name string
    	// +optional
    	Value *string
    }
    
    // PodIP represents a single IP address allocated to the pod.
    type PodIP struct {
    	// IP is the IP address assigned to the pod
    	IP string
    }
    
    // HostIP represents a single IP address allocated to the host.
    type HostIP struct {
    	// IP is the IP address assigned to the host
    	IP string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    // pod's hosts file.
    message HostAlias {
      // IP address of the host file entry.
      // +required
      optional string ip = 1;
    
      // Hostnames for the above IP address.
      // +listType=atomic
      repeated string hostnames = 2;
    }
    
    // HostIP represents a single IP address allocated to the host.
    message HostIP {
      // IP is the IP address assigned to the host
      optional string ip = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    				s.addNamedValue(n, v) // This helps with debugging information, not needed for compilation itself.
    			} else { // address was taken AND/OR too large for SSA
    				paramAssignment := ssa.ParamAssignmentForArgName(s.f, n)
    				if len(paramAssignment.Registers) > 0 {
    					if ssa.CanSSA(n.Type()) { // SSA-able type, so address was taken -- receive value in OpArg, DO NOT bind to var, store immediately to memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// Address in host:port format for reporting trace data to the Datadog agent.
    	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
    }
    
    func (x *TracerDatadogConfig) Reset() {
    	*x = TracerDatadogConfig{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - The `--bind-address` parameter in kube-proxy is misleading, no port is opened with this address. Instead it is translated internally to "nodeIP". The nodeIPs for both families are now taken from the Node object if `--bind-address` is unspecified or set to the "any" address (0.0.0.0 or ::). It is recommended to leave `--bind-address` unspecified, and in particular avoid to set it to localhost (127.0.0.1 or ::1) ([#119525...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    		if err != nil {
    			t.Errorf("Bad CIDR in kube-proxy output: %v", err)
    		}
    		matches = cidr.Contains(ip)
    	} else {
    		ip2 := netutils.ParseIPSloppy(address.Value)
    		if ip2 == nil {
    			t.Errorf("Bad IP/CIDR in kube-proxy output: %s", address.Value)
    		}
    		matches = ip.Equal(ip2)
    	}
    	return (!address.Negated && matches) || (address.Negated && !matches)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top