Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nongo (0.26 sec)

  1. src/cmd/api/api_test.go

    	}
    	testenv.MustHaveGoBuild(t)
    
    	warmupCache()
    
    	for _, context := range contexts {
    		w := NewWalker(context, "testdata/src/issue29837")
    		_, err := w.ImportFrom("p", "", 0)
    		if _, nogo := err.(*build.NoGoError); !nogo {
    			t.Errorf("expected *build.NoGoError, got %T", err)
    		}
    	}
    }
    
    func TestIssue41358(t *testing.T) {
    	if *flagCheck {
    		// slow, not worth repeating in -check
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 17:31:12 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/cmd/api/main_test.go

    	var featureCtx = make(map[string]map[string]bool) // feature -> context name -> true
    	for _, w := range walkers {
    		for _, name := range w.stdPackages {
    			pkg, err := w.import_(name)
    			if _, nogo := err.(*build.NoGoError); nogo {
    				continue
    			}
    			if err != nil {
    				log.Fatalf("Import(%q): %v", name, err)
    			}
    			w.export(pkg)
    		}
    
    		ctxName := contextName(w.context)
    		for _, f := range w.Features() {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top