Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for bodies (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/internal/obj/arm64/asm7.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 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. cmd/server_test.go

    	objectName2 := "testObject2"
    	// Unlike the actual PUT object request, the request to Copy Object doesn't contain request body,
    	// empty body with the "X-Amz-Copy-Source" header pointing to the object to copies it in the backend.
    	request, err = newTestRequest(http.MethodPut, getPutObjectURL(s.endPoint, bucketName, objectName2), 0, nil)
    	c.Assert(err, nil)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	// before allgptr to ensure that allglen is always <= len(allgptr). New
    	// Gs appended during the race can be missed. For a consistent view of
    	// all Gs, allglock must be held.
    	//
    	// allgptr copies should always be stored as a concrete type or
    	// unsafe.Pointer, not uintptr, to ensure that GC can still reach it
    	// even if it points to a stale array.
    	allglen uintptr
    	allgptr **g
    )
    
    func allgadd(gp *g) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/net/http/server.go

    func checkWriteHeaderCode(code int) {
    	// Issue 22880: require valid WriteHeader status codes.
    	// For now we only enforce that it's three digits.
    	// In the future we might block things over 599 (600 and above aren't defined
    	// at https://httpwg.org/specs/rfc7231.html#status.codes).
    	// But for now any three digits.
    	//
    	// We used to send "HTTP/1.1 000 0" on the wire in responses but there's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top