Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for bodies (0.4 sec)

  1. src/runtime/syscall_windows.go

    	c.n = uintptr(len(args))
    	if c.n != 0 {
    		c.args = uintptr(noescape(unsafe.Pointer(&args[0])))
    	}
    	cgocall(asmstdcallAddr, unsafe.Pointer(c))
    	// cgocall may reschedule us on to a different M,
    	// but it copies the return values into the new M's
    	// so we can read them from there.
    	c = &getg().m.winsyscall
    	return c.r1, c.r2, c.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
      message: messageValue
      nominatedNodeName: nominatedNodeNameValue
      phase: phaseValue
      podIP: podIPValue
      podIPs:
      - ip: ipValue
      qosClass: qosClassValue
      reason: reasonValue
      resize: resizeValue
      resourceClaimStatuses:
      - name: nameValue
        resourceClaimName: resourceClaimNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    	return buf, nil
    }
    
    // MarshalIndent is like [Marshal] but applies [Indent] to format the output.
    // Each JSON element in the output will begin on a new line beginning with prefix
    // followed by one or more copies of indent according to the indentation nesting.
    func MarshalIndent(v any, prefix, indent string) ([]byte, error) {
    	b, err := Marshal(v)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. src/runtime/stack.go

    		p := uintptr(sg.elem) + uintptr(sg.c.elemsize)
    		if stk.lo <= p && p < stk.hi && p > sghi {
    			sghi = p
    		}
    	}
    	return sghi
    }
    
    // syncadjustsudogs adjusts gp's sudogs and copies the part of gp's
    // stack they refer to while synchronizing with concurrent channel
    // operations. It returns the number of bytes of stack copied.
    func syncadjustsudogs(gp *g, used uintptr, adjinfo *adjustinfo) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/obj9.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 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            p.dryRun = dryRun;
            p.projectCacheDir = projectCacheDir;
            return p;
        }
    
        /**
         * <p>Creates the parameters for a new build, using these parameters as a template. Copies the environmental properties from this parameter (eg Gradle user home dir, etc), but does not copy the
         * build specific properties (eg task names).</p>
         *
         * @return The new parameters.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. src/encoding/gob/type.go

    // protected by a mutex.
    var typeInfoMap atomic.Value
    
    // typeInfoMapInit is used instead of typeInfoMap during init time,
    // as types are registered sequentially during init and we can save
    // the overhead of making map copies.
    // It is saved to typeInfoMap and set to nil before init finishes.
    var typeInfoMapInit = make(map[reflect.Type]*typeInfo, 16)
    
    func lookupTypeInfo(rt reflect.Type) *typeInfo {
    	if m := typeInfoMapInit; m != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. cmd/utils.go

    		r[k] = v
    	}
    	return r
    }
    
    // URI scheme constants.
    const (
    	httpScheme  = "http"
    	httpsScheme = "https"
    )
    
    // nopCharsetConverter is a dummy charset convert which just copies input to output,
    // it is used to ignore custom encoding charset in S3 XML body.
    func nopCharsetConverter(label string, input io.Reader) (io.Reader, error) {
    	return input, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/status/server.go

    	if err != nil {
    		status, ok := grpcStatus.FromError(err)
    		if ok {
    			switch status.Code() {
    			case codes.Unimplemented:
    				log.Errorf("server does not implement the grpc health protocol (grpc.health.v1.Health): %v", err)
    			case codes.DeadlineExceeded:
    				log.Errorf("grpc request not finished within timeout: %v", err)
    			default:
    				log.Errorf("grpc probe failed: %v", err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  10. src/runtime/chan.go

    	// stack shrinking.
    	gp.parkingOnChan.Store(true)
    	gopark(chanparkcommit, unsafe.Pointer(&c.lock), waitReasonChanSend, traceBlockChanSend, 2)
    	// Ensure the value being sent is kept alive until the
    	// receiver copies it out. The sudog has a pointer to the
    	// stack object, but sudogs aren't considered as roots of the
    	// stack tracer.
    	KeepAlive(ep)
    
    	// someone woke us up.
    	if mysg != gp.waiting {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top