Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 344 for nextGC (0.18 sec)

  1. src/cmd/trace/jsontrace_test.go

    	hms := heapMetrics(data)
    	var nonZeroAllocated, nonZeroNextGC bool
    	for _, hm := range hms {
    		if hm.Allocated > 0 {
    			nonZeroAllocated = true
    		}
    		if hm.NextGC > 0 {
    			nonZeroNextGC = true
    		}
    	}
    
    	if !nonZeroAllocated {
    		t.Errorf("nonZeroAllocated=%v, want true", nonZeroAllocated)
    	}
    	if !nonZeroNextGC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof.go

    	fmt.Fprintf(w, "# BuckHashSys = %d\n", s.BuckHashSys)
    	fmt.Fprintf(w, "# GCSys = %d\n", s.GCSys)
    	fmt.Fprintf(w, "# OtherSys = %d\n", s.OtherSys)
    
    	fmt.Fprintf(w, "# NextGC = %d\n", s.NextGC)
    	fmt.Fprintf(w, "# LastGC = %d\n", s.LastGC)
    	fmt.Fprintf(w, "# PauseNs = %d\n", s.PauseNs)
    	fmt.Fprintf(w, "# PauseEnd = %d\n", s.PauseEnd)
    	fmt.Fprintf(w, "# NumGC = %d\n", s.NumGC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    		case "/gc/heap/objects:objects":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.HeapObjects)
    		case "/gc/heap/goal:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.NextGC)
    		case "/gc/gogc:percent":
    			checkUint64(t, name, samples[i].Value.Uint64(), uint64(gcPercent))
    		case "/gc/cycles/automatic:gc-cycles":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/go/types/typeparam.go

    }
    
    // check may be nil
    func (check *Checker) newTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	// Always increment lastID, even if it is not used.
    	id := nextID()
    	if check != nil {
    		check.nextID++
    		id = check.nextID
    	}
    	typ := &TypeParam{check: check, id: id, obj: obj, index: -1, bound: constraint}
    	if obj.typ == nil {
    		obj.typ = typ
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typeparam.go

    }
    
    // check may be nil
    func (check *Checker) newTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	// Always increment lastID, even if it is not used.
    	id := nextID()
    	if check != nil {
    		check.nextID++
    		id = check.nextID
    	}
    	typ := &TypeParam{check: check, id: id, obj: obj, index: -1, bound: constraint}
    	if obj.typ == nil {
    		obj.typ = typ
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/looprotate.go

    			if nextIdx >= len(f.Blocks) { // reached end of function (maybe impossible?)
    				break
    			}
    			nextb := f.Blocks[nextIdx]
    			if nextb == p { // original loop predecessor is next
    				break
    			}
    			if loopnest.b2l[nextb.ID] == loop {
    				after[p.ID] = append(after[p.ID], nextb)
    			}
    			b = nextb
    		}
    		// Swap b and p so that we'll handle p before b when moving blocks.
    		f.Blocks[idToIdx[loop.header.ID]] = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationIdFactory.java

    /**
     * Provides an id unique within the global scope a build VM.
     */
    @ServiceScope(Scope.Global.class)
    public interface BuildOperationIdFactory {
    
        /**
         * @return the next unique ID
         */
        long nextId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 982 bytes
    - Viewed (0)
  8. src/hash/crc32/crc32_ppc64le.s

    	// now reduce the tail
    
    	CMP	$0,R7
    	BEQ	next1
    
    	LVX	(R4),V16
    	LVX	(R3),V17
    	VPMSUMW	V16,V17,V16
    	VXOR	V0,V16,V0
    	BC	18,0,next1
    
    	LVX	(R4+off16),V16
    	LVX	(R3+off16),V17
    	VPMSUMW	V16,V17,V16
    	VXOR	V0,V16,V0
    	BC	18,0,next1
    
    	LVX	(R4+off32),V16
    	LVX	(R3+off32),V17
    	VPMSUMW	V16,V17,V16
    	VXOR	V0,V16,V0
    	BC	18,0,next1
    
    	LVX	(R4+off48),V16
    	LVX	(R3+off48),V17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    	ready := new(uint32)
    	for i := 0; i < iters; i++ {
    		*ready = 0
    		next0 := (i & 1) == 0
    		next1 := (i & 2) == 0
    		runqput(p, &gs[0], next0)
    		go func() {
    			for atomic.Xadd(ready, 1); atomic.Load(ready) != 2; {
    			}
    			if runqempty(p) {
    				println("next:", next0, next1)
    				throw("queue is empty")
    			}
    			done <- true
    		}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. src/encoding/gob/type.go

    	copy(builtinIdToTypeSlice[:], idToTypeSlice)
    
    	// Move the id space upwards to allow for growth in the predefined world
    	// without breaking existing files.
    	if nextId := len(idToTypeSlice); nextId > firstUserId {
    		panic(fmt.Sprintln("nextId too large:", nextId))
    	}
    	idToTypeSlice = idToTypeSlice[:firstUserId]
    	registerBasics()
    	wireTypeUserInfo = userType(wireTypeType)
    }
    
    // Array type
    type arrayType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top