Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 183 for heapUp (0.14 sec)

  1. src/runtime/debug/garbage.go

    // WriteHeapDump writes a description of the heap and the objects in
    // it to the given file descriptor.
    //
    // WriteHeapDump suspends the execution of all goroutines until the heap
    // dump is completely written.  Thus, the file descriptor must not be
    // connected to a pipe or socket whose other end is in the same Go
    // process; instead, use a temporary file or network socket.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/runtime/mgcstack.go

    // the statically live pointers that may point into the stack. We then
    // process each pointer to see if it points to a stack object. If it
    // does, we scan that stack object. It may contain pointers into the
    // heap, in which case those pointers are passed to the main garbage
    // collection. It may also contain pointers into the stack, in which
    // case we add them to our set of stack pointers.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/phi.go

    		priq.a = append(priq.a, b)
    		hasDef.add(b.ID)
    		if debugPhi {
    			fmt.Printf("def of var%d in %s\n", n, b)
    		}
    	}
    	heap.Init(priq)
    
    	// Visit blocks defining variable n, from deepest to shallowest.
    	for len(priq.a) > 0 {
    		currentRoot := heap.Pop(priq).(*ssa.Block)
    		if debugPhi {
    			fmt.Printf("currentRoot %s\n", currentRoot)
    		}
    		// Walk subtree below definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    Note that a daemon is considered compatible only if the classpath exactly matches the requested classpath.
    
    heap settings::
    A daemon is considered compatible if it has at least the same heap size settings as requested. +
    In other words, a daemon that has higher heap settings than requested would be considered compatible.
    
    jvm arguments::
    A daemon is compatible if it has set all the JVM arguments requested. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/complit.go

    	//	vstat = constpart{}
    	// 3. make an auto pointer to array and allocate heap to it
    	//	var vauto *[...]t = new([...]t)
    	// 4. copy the static array to the auto array
    	//	*vauto = vstat
    	// 5. for each dynamic part assign to the array
    	//	vauto[i] = dynamic part
    	// 6. assign slice of allocated heap to var
    	//	var = vauto[:]
    	//
    	// an optimization is done if there is no constant part
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  6. src/runtime/gc_test.go

    	}
    }
    
    func TestGcDeepNesting(t *testing.T) {
    	type T [2][2][2][2][2][2][2][2][2][2]*int
    	a := new(T)
    
    	// Prevent the compiler from applying escape analysis.
    	// This makes sure new(T) is allocated on heap, not on the stack.
    	t.Logf("%p", a)
    
    	a[0][0][0][0][0][0][0][0][0][0] = new(int)
    	*a[0][0][0][0][0][0][0][0][0][0] = 13
    	runtime.GC()
    	if *a[0][0][0][0][0][0][0][0][0][0] != 13 {
    		t.Fail()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/types.go

    // methods are suffixed with "NoWB" to indicate that explicitly.
    // As a result, this type should be used carefully, and sparingly,
    // mostly with values that do not live in the Go heap anyway.
    //
    // An UnsafePointer must not be copied.
    type UnsafePointer struct {
    	noCopy noCopy
    	value  unsafe.Pointer
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. src/runtime/pprof/proto_test.go

    // (including a fake mapping), and their HasFunctions bits
    // are set correctly.
    func TestFakeMapping(t *testing.T) {
    	var buf bytes.Buffer
    	if err := Lookup("heap").WriteTo(&buf, 0); err != nil {
    		t.Fatalf("failed to write heap profile: %v", err)
    	}
    	prof, err := profile.Parse(&buf)
    	if err != nil {
    		t.Fatalf("failed to parse the generated profile data: %v", err)
    	}
    	t.Logf("Profile: %s", prof)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. src/internal/trace/gc.go

    		//
    		// Check if there's any overlapping window
    		// already in the heap and keep whichever is
    		// worse.
    		for i, ui := range acc.wHeap {
    			if time+int64(window) > ui.Time && ui.Time+int64(window) > time {
    				if ui.MutatorUtil <= mu {
    					// Keep the first window.
    					goto keep
    				} else {
    					// Replace it with this window.
    					heap.Remove(&acc.wHeap, i)
    					break
    				}
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/a.out.go

    	C_SBRA     // short branch
    	C_LBRA     // long branch
    	C_SAUTO    // short auto
    	C_LAUTO    // long auto
    	C_ZOREG    // heap address, register-based, displacement == 0
    	C_SOREG    // heap address, register-based, int16 displacement
    	C_LOREG    // heap address, register-based, int32 displacement
    	C_TLS_LE   // TLS - local exec model (for executables)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top