Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 103 of 103 for Sizes (0.09 sec)

  1. src/runtime/proc.go

    		maxstacksize = 250000000
    	}
    
    	// An upper limit for max stack size. Used to avoid random crashes
    	// after calling SetMaxStack and trying to allocate a stack that is too big,
    	// since stackalloc works with 32-bit sizes.
    	maxstackceiling = 2 * maxstacksize
    
    	// Allow newproc to start new Ms.
    	mainStarted = true
    
    	if haveSysmon {
    		systemstack(func() {
    			newm(sysmon, nil, -1)
    		})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Support for Python3.9 has been added.
    *   `tf.data`:
        *   `tf.data` service now supports strict round-robin reads, which is useful
            for synchronous training workloads where example sizes vary. With strict
            round robin reads, users can guarantee that consumers get similar-sized
            examples in the same step.
        *   tf.data service now supports optional compression. Previously data would
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	{V(MyStruct2{}), V(MyStruct1{})},
    
    	// can convert *byte and *MyByte
    	{V((*byte)(nil)), V((*MyByte)(nil))},
    	{V((*MyByte)(nil)), V((*byte)(nil))},
    
    	// cannot convert mismatched array sizes
    	{V([2]byte{}), V([2]byte{})},
    	{V([3]byte{}), V([3]byte{})},
    	{V(MyBytesArray0{}), V([0]byte{})},
    	{V([0]byte{}), V(MyBytesArray0{})},
    
    	// cannot convert other instances
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top