Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for stabilize (1.28 sec)

  1. src/cmd/go/internal/modload/load.go

    		ld.buildStacks()
    
    		changed, err := ld.updateRequirements(ctx)
    		if err != nil {
    			ld.error(err)
    			break
    		}
    		if changed {
    			// Don't resolve missing imports until the module graph has stabilized.
    			// If the roots are still changing, they may turn out to specify a
    			// requirement on the missing package(s), and we would rather use a
    			// version specified by a new root than add a new dependency on an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    				t.Fatal(err)
    			}
    			imports[pkg.Name()] = pkg
    			return pkg
    		}
    		makePkg(lib)
    		pkg := makePkg(test.src)
    
    		t.Run(pkg.Name(), func(t *testing.T) {
    			// Sort instances in source order for stability.
    			instances := sortedInstances(instMap)
    			if got, want := len(instances), len(test.instances); got != want {
    				t.Fatalf("got %d instances, want %d", got, want)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    				t.Fatal(err)
    			}
    			imports[pkg.Name()] = pkg
    			return pkg
    		}
    		makePkg(lib)
    		pkg := makePkg(test.src)
    
    		t.Run(pkg.Name(), func(t *testing.T) {
    			// Sort instances in source order for stability.
    			instances := sortedInstances(instMap)
    			if got, want := len(instances), len(test.instances); got != want {
    				t.Fatalf("got %d instances, want %d", got, want)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top