Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for script (1.37 sec)

  1. src/cmd/go/go_test.go

    			canRace = false
    		}
    	}
    
    	if n, limited := base.NetLimit(); limited && n > 0 {
    		// Split the network limit into chunks, so that each parallel script can
    		// have one chunk. We want to run as many parallel scripts as possible, but
    		// also want to give each script as high a limit as possible.
    		// We arbitrarily split by sqrt(n) to try to balance those two goals.
    		netTestLimit := int(math.Sqrt(float64(n)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    	}
    	// Even if -mod=vendor, we could be operating with no mod root (and thus no
    	// vendor directory). As long as there are no dependencies that is expected
    	// to work. See script/vendor_outside_module.txt.
    	modRoot := MainModules.ModRoot(MainModules.mustGetSingleMainModule())
    	if modRoot == "" {
    		panic("vendor directory does not exist when in single module mode outside of a module")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    				t.Errorf("%s: len(Peek(%d)) = %v; want %v", tt.name, tt.peekSize, len(peekBuf), tt.peekSize)
    				continue
    			}
    		}
    		discarded, err := br.Discard(tt.n)
    		if ge, we := fmt.Sprint(err), fmt.Sprint(tt.wantErr); discarded != tt.want || ge != we {
    			t.Errorf("%s: Discard(%d) = (%v, %v); want (%v, %v)", tt.name, tt.n, discarded, ge, tt.want, we)
    			continue
    		}
    		if bn := br.Buffered(); bn != tt.wantBuffered {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. src/bytes/bytes_test.go

    }
    
    var bmbuf []byte
    
    func valName(x int) string {
    	if s := x >> 20; s<<20 == x {
    		return fmt.Sprintf("%dM", s)
    	}
    	if s := x >> 10; s<<10 == x {
    		return fmt.Sprintf("%dK", s)
    	}
    	return fmt.Sprint(x)
    }
    
    func benchBytes(b *testing.B, sizes []int, f func(b *testing.B, n int)) {
    	for _, n := range sizes {
    		if isRaceBuilder && n > 4<<10 {
    			continue
    		}
    		b.Run(valName(n), func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	}
    }
    
    // base strips away qualifiers and typedefs to get the underlying type.
    func base(dt dwarf.Type) dwarf.Type {
    	for {
    		if d, ok := dt.(*dwarf.QualType); ok {
    			dt = d.Type
    			continue
    		}
    		if d, ok := dt.(*dwarf.TypedefType); ok {
    			dt = d.Type
    			continue
    		}
    		break
    	}
    	return dt
    }
    
    // unqual strips away qualifiers from a DWARF type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    				switch f {
    				case "lazymod=log":
    					debug.PrintStack()
    					fmt.Fprintf(os.Stderr, "go: read full module graph.\n")
    				case "lazymod=strict":
    					debug.PrintStack()
    					base.Fatalf("go: read full module graph (forbidden by GODEBUG=lazymod=strict).")
    				}
    			}
    		})
    	}
    
    	var graphRoots []module.Version
    	if inWorkspaceMode() {
    		graphRoots = roots
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    		}
    		defer func() {
    			if err := close(); err != nil {
    				base.Fatalf("failed to stop trace: %v", err)
    			}
    		}()
    	}
    
    	ctx, span := trace.StartSpan(ctx, fmt.Sprint("Running ", cmd.Name(), " command"))
    	defer span.Done()
    
    	work.FindExecCmd() // initialize cached result
    
    	work.BuildInit()
    	work.VetFlags = testVet.flags
    	work.VetExplicit = testVet.explicit
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    		{[]*syntax.File{fileB, fileA}, "[b = 2 a = 1]"},
    	} {
    		var info Info
    		if _, err := new(Config).Check("main", test.files, &info); err != nil {
    			t.Fatal(err)
    		}
    		if got := fmt.Sprint(info.InitOrder); got != test.want {
    			t.Fatalf("got %s; want %s", got, test.want)
    		}
    	}
    }
    
    func TestFiles(t *testing.T) {
    	var sources = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    		// Check that GOROOT/bin appears in $PATH.
    		pathsep := ":"
    		if gohostos == "windows" {
    			pathsep = ";"
    		}
    		path := os.Getenv("PATH")
    		if p, ok := os.LookupEnv("DIST_UNMODIFIED_PATH"); ok {
    			// Scripts that modify $PATH and then run dist should also provide
    			// dist with an unmodified copy of $PATH via $DIST_UNMODIFIED_PATH.
    			// Use it here when determining if the user still needs to update
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    // But the definition of x3 doesn't dominate b2.  We should really
    // insert an extra phi at the start of b2 (x5=phi(x3,x4):BX) to keep
    // SSA form. For now, we ignore this problem as remaining in strict
    // SSA form isn't needed after regalloc. We'll just leave the use
    // of x3 not dominated by the definition of x3, and the CX->BX copy
    // will have no use (so don't run deadcode after regalloc!).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top