Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 229 for mheap (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/scheduler/schedule_one.go

    		return "", nil, errEmptyPriorityList
    	}
    
    	var h nodeScoreHeap = nodeScoreList
    	heap.Init(&h)
    	cntOfMaxScore := 1
    	selectedIndex := 0
    	// The top of the heap is the NodeScoreResult with the highest score.
    	sortedNodeScoreList := make([]framework.NodePluginScores, 0, count)
    	sortedNodeScoreList = append(sortedNodeScoreList, heap.Pop(&h).(framework.NodePluginScores))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  7. src/sort/zsortfunc.go

    	for i := a + 1; i < b; i++ {
    		for j := i; j > a && data.Less(j, j-1); j-- {
    			data.Swap(j, j-1)
    		}
    	}
    }
    
    // siftDown_func implements the heap property on data[lo:hi].
    // first is an offset into the array where the root of the heap lies.
    func siftDown_func(data lessSwap, lo, hi, first int) {
    	root := lo
    	for {
    		child := 2*root + 1
    		if child >= hi {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/schedule.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/types"
    	"container/heap"
    	"sort"
    )
    
    const (
    	ScorePhi       = iota // towards top of block
    	ScoreArg              // must occur at the top of the entry block
    	ScoreInitMem          // after the args - used as mark by debug info generation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/runtime/mpagealloc_test.go

    		// memory that isn't just in the case where we exhaust the heap.
    		//
    		// It achieves this by placing a chunk such that its summary will be
    		// at the very end of a physical page. It then also places another chunk
    		// much further up in the address space, such that any allocations into the
    		// first chunk do not exhaust the heap and the second chunk's summary is not in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	heapHeaderRE = regexp.MustCompile(`heap profile: *(\d+): *(\d+) *\[ *(\d+): *(\d+) *\] *@ *(heap[_a-z0-9]*)/?(\d*)`)
    	heapSampleRE = regexp.MustCompile(`(-?\d+): *(-?\d+) *\[ *(\d+): *(\d+) *] @([ x0-9a-f]*)`)
    
    	contentionSampleRE = regexp.MustCompile(`(\d+) *(\d+) @([ x0-9a-f]*)`)
    
    	hexNumberRE = regexp.MustCompile(`0x[0-9a-f]+`)
    
    	growthHeaderRE = regexp.MustCompile(`heap profile: *(\d+): *(\d+) *\[ *(\d+): *(\d+) *\] @ growthz?`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
Back to top