Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for gcMark (0.14 sec)

  1. src/cmd/vendor/rsc.io/markdown/para.go

    		}
    		// Blank or unindented line ends table.
    		// (So does a new block structure, but the caller has checked that already.)
    		// So does a line with just a pipe:
    		// https://github.com/github/cmark-gfm/pull/127 and
    		// https://github.com/github/cmark-gfm/pull/128
    		// fixed a buffer overread by rejecting | by itself as a table line.
    		// That seems to violate the spec, but we will play along.
    		b = nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/runtime/lock_js.go

    		}
    
    		id := scheduleTimeoutEvent(delay)
    		mp := acquirem()
    		notes[n] = gp
    		notesWithTimeout[n] = noteWithTimeout{gp: gp, deadline: deadline}
    		releasem(mp)
    
    		gopark(nil, nil, waitReasonSleep, traceBlockSleep, 1)
    
    		clearTimeoutEvent(id) // note might have woken early, clear timeout
    
    		mp = acquirem()
    		delete(notes, n)
    		delete(notesWithTimeout, n)
    		releasem(mp)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/table.go

    			i++
    		}
    		if i < len(delim) && delim[i] == '|' {
    			i++
    		}
    	}
    
    	if strings.TrimSpace(hdr1) == "|" {
    		// https://github.com/github/cmark-gfm/pull/127 and
    		// https://github.com/github/cmark-gfm/pull/128
    		// fixed a buffer overread by rejecting | by itself as a table line.
    		// That seems to violate the spec, but we will play along.
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/runtime/gcinfo_test.go

    		verifyGCInfo(t, "heap iface", runtime.Escape(new(Iface)), trimDead(infoIface))
    	}
    }
    
    func verifyGCInfo(t *testing.T, name string, p any, mask0 []byte) {
    	mask := runtime.GCMask(p)
    	if bytes.HasPrefix(mask, mask0) {
    		// Just the prefix matching is OK.
    		//
    		// The Go runtime's pointer/scalar iterator generates pointers beyond
    		// the size of the type, up to the size of the size class. This space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:58:08 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/runtime/debugcall.go

    		trace := traceAcquire()
    		if trace.ok() {
    			// Trace the event before the transition. It may take a
    			// stack trace, but we won't own the stack after the
    			// transition anymore.
    			trace.GoPark(traceBlockDebugCall, 1)
    		}
    		casGToWaiting(gp, _Grunning, waitReasonDebugCall)
    		if trace.ok() {
    			traceRelease(trace)
    		}
    		dropg()
    
    		// Directly execute the new goroutine. The debug
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top