Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for bodies (0.25 sec)

  1. src/cmd/link/internal/ld/data.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	// set pod IP to hostIP directly in runtime.GetPodStatus
    	podStatus.IPs = make([]string, 0, len(apiPodStatus.PodIPs))
    	for _, ipInfo := range apiPodStatus.PodIPs {
    		podStatus.IPs = append(podStatus.IPs, ipInfo.IP)
    	}
    	if len(podStatus.IPs) == 0 && len(apiPodStatus.PodIP) > 0 {
    		podStatus.IPs = []string{apiPodStatus.PodIP}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.HostIPs != nil {
    		in, out := &in.HostIPs, &out.HostIPs
    		*out = make([]HostIP, len(*in))
    		copy(*out, *in)
    	}
    	if in.PodIPs != nil {
    		in, out := &in.PodIPs, &out.PodIPs
    		*out = make([]PodIP, len(*in))
    		copy(*out, *in)
    	}
    	if in.StartTime != nil {
    		in, out := &in.StartTime, &out.StartTime
    		*out = (*in).DeepCopy()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.HostIPs != nil {
    		in, out := &in.HostIPs, &out.HostIPs
    		*out = make([]HostIP, len(*in))
    		copy(*out, *in)
    	}
    	if in.PodIPs != nil {
    		in, out := &in.PodIPs, &out.PodIPs
    		*out = make([]PodIP, len(*in))
    		copy(*out, *in)
    	}
    	if in.StartTime != nil {
    		in, out := &in.StartTime, &out.StartTime
    		*out = (*in).DeepCopy()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // (that is, paths relative to Dir, not absolute paths).
    // The generated files added when using the -compiled and -test flags
    // are absolute paths referring to cached copies of generated Go source files.
    // Although they are Go source files, the paths may not end in ".go".
    //
    // The -m flag causes list to list modules instead of packages.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    FunctionName = identifier .
    FunctionBody = Block .
    </pre>
    
    <p>
    If the function's <a href="#Function_types">signature</a> declares
    result parameters, the function body's statement list must end in
    a <a href="#Terminating_statements">terminating statement</a>.
    </p>
    
    <pre>
    func IndexRune(s string, r rune) int {
    	for i, c := range s {
    		if c == r {
    			return i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/bootstrap.min.js.map

    $(parent).addClass(ClassName.POSITION_STATIC)\n      }\n      this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig())\n    }\n\n    // If this is a touch-enabled device we add extra\n    // empty mouseover listeners to the body's immediate children;\n    // only needed because of broken event delegation on iOS\n    // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n    if ('ontouchstart' in document.documentElement &&\n        $(parent).closest(Sele...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    				}
    				delete(nodeMap, field.Values[0])
    			}
    		}
    
    		if len(nodeMap) != 0 {
    			t.Fatalf("did not find pods on nodes %+v", nodeMap)
    		}
    	}
    }
    
    // Simulate a cluster with 100 nodes, but simulate a limit (like a quota limit)
    // of 10 pods, and verify that the ds doesn't make 100 create calls per sync pass
    func TestSimpleDaemonSetPodCreateErrors(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top