Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cleanExt (0.45 sec)

  1. src/cmd/go/internal/clean/clean.go

    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    	"test.out":     true,
    	"build.out":    true,
    	"a.out":        true,
    }
    
    var cleanExt = map[string]bool{
    	".5":  true,
    	".6":  true,
    	".8":  true,
    	".a":  true,
    	".o":  true,
    	".so": true,
    }
    
    func clean(p *load.Package) {
    	if cleaned[p] {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/iter/pull_test.go

    			}
    		}
    	}
    }
    
    func goexits(t *testing.T, f func()) bool {
    	t.Helper()
    
    	exit := make(chan bool)
    	go func() {
    		cleanExit := false
    		defer func() {
    			exit <- recover() == nil && !cleanExit
    		}()
    		f()
    		cleanExit = true
    	}()
    	return <-exit
    }
    
    func TestPullImmediateStop(t *testing.T) {
    	next, stop := Pull(panicSeq())
    	stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    	if len(subs) > 0 {
    		cleanAlt(subs[len(subs)-1])
    	}
    
    	// Empty alternate is special case
    	// (shouldn't happen but easy to handle).
    	if len(subs) == 0 {
    		return p.push(p.newRegexp(OpNoMatch))
    	}
    
    	return p.push(p.collapse(subs, OpAlternate))
    }
    
    // cleanAlt cleans re for eventual inclusion in an alternation.
    func cleanAlt(re *Regexp) {
    	switch re.Op {
    	case OpCharClass:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug_test.go

    // (otherwise output depends on library internals)
    // and for both gdb and dlv by default repeated lines in the next stream are ignored
    // (because this appears to be timing-dependent in gdb, and the cleanest fix is in code common to gdb and dlv).
    //
    // Also by default, any source code outside of .../testdata/ is not mentioned
    // in the debugging histories.  This deals both with inlined library code once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top