Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for mheap (0.04 sec)

  1. src/runtime/asm_amd64.s

    TEXT ·sigpanic0(SB),NOSPLIT,$0-0
    	get_tls(R14)
    	MOVQ	g(R14), R14
    #ifndef GOOS_plan9
    	XORPS	X15, X15
    #endif
    	JMP	·sigpanic<ABIInternal>(SB)
    
    // gcWriteBarrier informs the GC about heap pointer writes.
    //
    // gcWriteBarrier returns space in a write barrier buffer which
    // should be filled in by the caller.
    // gcWriteBarrier does NOT follow the Go ABI. It accepts the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

    }
    
    TEST_F(CApiAttributesTest, StringTensor) {
      // Create the string-Tensor "attribute" value.
      const char test_string[] =
          "borkborkborkborkborkborkborkbork";  // >24bytes to force heap alloc
      TF_TString tstr[1];
      TF_TString_Init(&tstr[0]);
      TF_TString_Copy(&tstr[0], test_string, sizeof(test_string) - 1);
    
      auto deallocator = [](void* data, size_t len, void* arg) {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. src/sync/atomic/atomic_test.go

    var global [1024]byte
    
    func testPointers() []unsafe.Pointer {
    	var pointers []unsafe.Pointer
    	// globals
    	for i := 0; i < 10; i++ {
    		pointers = append(pointers, unsafe.Pointer(&global[1<<i-1]))
    	}
    	// heap
    	pointers = append(pointers, unsafe.Pointer(new(byte)))
    	// nil
    	pointers = append(pointers, nil)
    	return pointers
    }
    
    func TestSwapPointer(t *testing.T) {
    	var x struct {
    		before uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // minIovec is the size of the small initial allocation used by
    // Readv, Writev, etc.
    //
    // This small allocation gets stack allocated, which lets the
    // common use case of len(iovs) <= minIovs avoid more expensive
    // heap allocations.
    const minIovec = 8
    
    // appendBytes converts bs to Iovecs and appends them to vecs.
    func appendBytes(vecs []Iovec, bs [][]byte) []Iovec {
    	for _, b := range bs {
    		var v Iovec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    You can <<checkstyle_plugin.adoc#sec:checkstyle_customize_memory,increase the maximum memory for the Checkstyle process>> by setting the `maxHeapSize` for the Checkstyle task.
    By default, the process will start with a maximum heap size of 512MB.
    
    We also recommend to update Checkstyle to version 9.3 or later.
    
    ==== Missing files specified with relative paths when running Checkstyle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/reflect/type.go

    		// zero-sized field. We add an extra byte of padding,
    		// to ensure that taking the address of the final
    		// zero-sized field can't manufacture a pointer to the
    		// next object in the heap. See issue 9401.
    		size++
    		if size == 0 {
    			panic("reflect.StructOf: struct size would exceed virtual address space")
    		}
    	}
    
    	var typ *structType
    	var ut *uncommonType
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top