Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for link66 (0.14 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

      
      Please use the following format for linking documentation:
      - [KEP]: <link>
      - [Usage]: <link>
      - [Other doc]: <link>
      --> ([#119495](https://github.com/kubernetes/kubernetes/pull/119495), [@bzsuni](https://github.com/bzsuni)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

      
      Please use the following format for linking documentation:
      - [KEP]: <link>
      - [Usage]: <link>
      - [Other doc]: <link>
      --> ([#113428](https://github.com/kubernetes/kubernetes/pull/113428), [@mengjiao-liu](https://github.com/mengjiao-liu)) [SIG API Machinery, Apps, Instrumentation and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-44626`](https://youtrack.jetbrains.com/issue/KT-44626) Umbrella issue: different kinds of klib IR linker error messages
    - [`KT-64452`](https://youtrack.jetbrains.com/issue/KT-64452) K2: Port FilePathsInKlibTest to K2
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	subtreeBytes int64                  // sum(node.bytes) of all nodes in this subtree
    
    	// These links form the priority tree.
    	parent     *http2priorityNode
    	kids       *http2priorityNode // start of the kids list
    	prev, next *http2priorityNode // doubly-linked list of siblings
    }
    
    func (n *http2priorityNode) setParent(parent *http2priorityNode) {
    	if n == parent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. doc/go_spec.html

    language.
    </p>
    
    <p>
    A link of the form [<a href="#Language_versions">Go 1.xx</a>] indicates that a described
    language feature (or some aspect of it) was changed or added with language version 1.xx and
    thus requires at minimum that language version to build.
    For details, see the <a href="#Language_versions">linked section</a>
    in the <a href="#Appendix">appendix</a>.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  6. pkg/apis/core/types.go

    }
    
    // EndpointAddress is a tuple that describes single IP address.
    type EndpointAddress struct {
    	// The IP of this endpoint.
    	// May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10),
    	// or link-local multicast (224.0.0.0/24 or ff02::/16).
    	IP string
    	// Optional: Hostname of this endpoint
    	// Meant to be used by DNS servers etc.
    	// +optional
    	Hostname 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/types_swagger_doc_generated.go

    var map_EndpointAddress = map[string]string{
    	"":          "EndpointAddress is a tuple that describes single IP address.",
    	"ip":        "The IP of this endpoint. May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10), or link-local multicast (224.0.0.0/24 or ff02::/16).",
    	"hostname":  "The Hostname of this endpoint",
    	"nodeName":  "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    					// Unlink from the current list.
    					for x := s.pp.Text; x != nil; x = x.Link {
    						if x.Link == nop {
    							x.Link = nop.Link
    							break
    						}
    					}
    					// Splice in right before p.
    					for x := s.pp.Text; x != nil; x = x.Link {
    						if x.Link == p {
    							nop.Link = p
    							x.Link = nop
    							break
    						}
    					}
    				}
    				break
    			}
    		}
    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