Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for predsBuf (0.23 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    // using its result.
    func (state *debugState) mergePredecessors(b *Block, blockLocs []*BlockDebug, previousBlock *Block, forLocationLists bool) (abt.T, bool) {
    	// Filter out back branches.
    	var predsBuf [10]*Block
    
    	preds := predsBuf[:0]
    	locs := blockLocs[b.ID]
    
    	blockChanged := !locs.everProcessed // the first time it always changes.
    	updating := locs.everProcessed
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasPrefixAndSuffixPatternStepTest.groovy

            def step = new HasPrefixAndSuffixPatternStep("pre", "suf", CASE_SENSITIVE)
    
            expect:
            step.matches("pre-suf")
            step.matches("presufsuf")
            step.matches("presuf")
            !step.matches("")
            !step.matches("pre")
            !step.matches("pre-su")
            !step.matches("pre-s")
            !step.matches("suf")
            !step.matches("re-suf")
            !step.matches("e-suf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top