Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 179 for Berger (0.34 sec)

  1. src/cmd/go/internal/vcweb/vcweb.go

    	"io/fs"
    	"log"
    	"net/http"
    	"os"
    	"os/exec"
    	"path"
    	"path/filepath"
    	"runtime/debug"
    	"strings"
    	"sync"
    	"text/tabwriter"
    	"time"
    )
    
    // A Server serves cached, dynamically-generated version control repositories.
    type Server struct {
    	env    []string
    	logger *log.Logger
    
    	scriptDir string
    	workDir   string
    	homeDir   string // $workdir/home
    	engine    *script.Engine
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    		pending.clear()
    		return
    	}
    
    	// Extend the previous entry if possible.
    	if pending.present {
    		merge := true
    		for i, slotID := range state.varSlots[varID] {
    			if !canMerge(pending.pieces[i], curLoc[slotID]) {
    				merge = false
    				break
    			}
    		}
    		if merge {
    			return
    		}
    	}
    
    	state.writePendingEntry(varID, b.ID, v.ID)
    	pending.present = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/stack.go

    // stackGuardMultiplier returns a multiplier to apply to the default
    // stack guard size. Larger multipliers are used for non-optimized
    // builds that have larger stack frames or for specific targets.
    func stackGuardMultiplier(race bool) int {
    	// This arithmetic must match that in runtime/internal/sys/consts.go:StackGuardMultiplier.
    	n := 1
    	// On AIX, a larger stack is needed for syscalls.
    	if buildcfg.GOOS == "aix" {
    		n += 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 904 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/README

    They are written in a dialect of the same script language as in
    cmd/go/testdata/script, and the outputs are hosted by the server in
    cmd/go/internal/vcweb.
    
    To see the conditions and commands available for these scripts, run:
    
    	go test cmd/go/internal/vcweb -v --run=TestHelp
    
    To host these scripts in a standalone server, run:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 487 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/server.go

    }
    
    // A Server is the checksum database HTTP server,
    // which implements http.Handler and should be invoked
    // to serve the paths listed in [ServerPaths].
    type Server struct {
    	ops ServerOps
    }
    
    // NewServer returns a new Server using the given operations.
    func NewServer(ops ServerOps) *Server {
    	return &Server{ops: ops}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcweb/script.go

    	}
    	return sc.handler, nil
    }
    
    // newState returns a new script.State for executing scripts in workDir.
    func (s *Server) newState(ctx context.Context, workDir string) (*script.State, error) {
    	ctx = &scriptCtx{
    		Context: ctx,
    		server:  s,
    	}
    
    	st, err := script.NewState(ctx, workDir, s.env)
    	if err != nil {
    		return nil, err
    	}
    	return st, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_proxy_errors.txt

    [short] skip
    
    env GO111MODULE=on
    env GOSUMDB=off
    env GOPROXY=direct
    
    # Server responses should be truncated to some reasonable number of lines.
    # (For now, exactly eight.)
    ! go list -m vcs-test.golang.org/auth/ormanylines@latest
    stderr '\tserver response:\n(.|\n)*\tline 8\n\t\[Truncated: too many lines.\]$'
    
    # Server responses should be truncated to some reasonable number of characters.
    ! go list -m vcs-test.golang.org/auth/oronelongline@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 698 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/switch.go

    	// Combine adjacent cases with the same hash.
    	merged := cc[:1]
    	for _, c := range cc[1:] {
    		last := &merged[len(merged)-1]
    		if last.hash == c.hash {
    			last.body.Append(c.body.Take()...)
    		} else {
    			merged = append(merged, c)
    		}
    	}
    	cc = merged
    
    	if s.tryJumpTable(cc, compiled) {
    		return
    	}
    	binarySearch(len(cc), compiled,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_missing_repo.txt

    # Regression test for golang.org/issue/34094: modules hosted within gitlab.com
    # subgroups could not be fetched because the server returned bogus go-import
    # tags for prefixes of the module path.
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/go/missingrepo/missingrepo-git@latest
    stderr 'vcs-test.golang.org/go/missingrepo/missingrepo-git: git ls-remote .*: exit status .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 534 bytes
    - Viewed (0)
  10. src/cmd/covdata/doc.go

    	cov-example/p/p.go:12.22,13.2 0 0
    	cov-example/p/p.go:15.31,16.2 1 0
    	cov-example/p/p.go:16.3,18.3 0 0
    	cov-example/p/p.go:19.3,21.3 0 0
    	...
    	$ go tool cover -html=cov.txt
    	$
    
    5. Merge profiles together:
    
    	$ go tool covdata merge -i=indir1,indir2 -o=outdir -modpaths=github.com/go-delve/delve
    	$
    
    6. Subtract one profile from another
    
    	$ go tool covdata subtract -i=indir1,indir2 -o=outdir
    	$
    
    7. Intersect profiles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top