Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for addPass (0.15 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. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      in the spec and the requested address is invalid or unavailable,
                      the implementation MUST indicate this in the associated entry in
                      GatewayStatus.Addresses. \n The Addresses field represents a request
                      for the address(es) on the \"outside of the Gateway\", that traffic
                      bound for this Gateway will use. This could be the IP address or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.18.md

    #### kubectl:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.10.md

    --require-kubeconfig flag, removed default --kubeconfig value (([#58367](https://github.com/kubernetes/kubernetes/pull/58367), [@zhangxiaoyu-zidif](https://github.com/zhangxiaoyu-zidif))
    
    * The public-address-override, address, and port flags have been removed and replaced by bind-address, insecure-bind-address, and insecure-port, respectively. They are marked as deprecated in [#36604](https://github.com/kubernetes/kubernetes/pull/36604), which is more than a year ago.  ([#59018](https://github.com/kub...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  10. 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)
Back to top