Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for Prestes (0.58 sec)

  1. doc/next/6-stdlib/99-minor/net/http/httptest/59473.md

    The new [NewRequestWithContext] method creates an incoming request with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 93 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    # This fuzz function creates a file with a unique name ($pid.$count) on each
    # run. We count the files to find the number of runs.
    mkdir count
    go test -fuzz=FuzzTestCount -fuzztime=1000x -fuzzminimizetime=1x
    go run check_file_count.go count 1000
    
    # When we use fuzzminimizetime with an "x" suffix, it runs a specific number of
    # times while minimizing. This fuzz function creates a file with a unique name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/internal/cov/covcmd/cmddefs.go

    import (
    	"crypto/sha256"
    	"fmt"
    	"internal/coverage"
    )
    
    // CoverPkgConfig is a bundle of information passed from the Go
    // command to the cover command during "go build -cover" runs. The
    // Go command creates and fills in a struct as below, then passes
    // file containing the encoded JSON for the struct to the "cover"
    // tool when instrumenting the source files in a Go package.
    type CoverPkgConfig struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/script_test.go

    func tbFromContext(ctx context.Context) (testing.TB, bool) {
    	t := ctx.Value(testingTBKey{})
    	if t == nil {
    		return nil, false
    	}
    	return t.(testing.TB), true
    }
    
    // initScriptDirs creates the initial directory structure in s for unpacking a
    // cmd/go script.
    func initScriptDirs(t testing.TB, s *script.State) (telemetryDir string) {
    	must := func(err error) {
    		if err != nil {
    			t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/dom_test.go

    func BenchmarkDominatorsMaxPredVal(b *testing.B) { benchmarkDominators(b, 10000, genMaxPredValue) }
    
    type blockGen func(size int) []bloc
    
    // genLinear creates an array of blocks that succeed one another
    // b_n -> [b_n+1].
    func genLinear(size int) []bloc {
    	var blocs []bloc
    	blocs = append(blocs,
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/symbolbuilder.go

    type SymbolBuilder struct {
    	*extSymPayload         // points to payload being updated
    	symIdx         Sym     // index of symbol being updated/constructed
    	l              *Loader // loader
    }
    
    // MakeSymbolBuilder creates a symbol builder for use in constructing
    // an entirely new symbol.
    func (l *Loader) MakeSymbolBuilder(name string) *SymbolBuilder {
    	// for now assume that any new sym is intended to be static
    	symIdx := l.CreateStaticSym(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    		c = tconv(c, types.Types[types.TUINTPTR])
    		setField("sourceLocation", c, i)
    	}
    	fn.Body.Append(init...)
    	return globals
    }
    
    // createtypes creates the asanGlobal, asanLocation and defString struct type.
    // Go compiler does not refer to the C types, we represent the struct field
    // by a uintptr, then use type conversion to make copies of the data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/compile.go

    			fmt.Fprintf(buf, "%s=%d ", key, f.ruleMatches[key])
    		}
    		fmt.Fprint(buf, "\n")
    		fmt.Print(buf.String())
    	}
    
    	// Squash error printing defer
    	phaseName = ""
    }
    
    // DumpFileForPhase creates a file from the function name and phase name,
    // warning and returning nil if this is not possible.
    func (f *Func) DumpFileForPhase(phaseName string) io.WriteCloser {
    	f.dumpFileSeq++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/cmd/internal/cov/readcovdata.go

    	vis            CovDataVisitor
    	indirs         []string
    	matchpkg       func(name string) bool
    	flags          CovDataReaderFlags
    	err            error
    	verbosityLevel int
    }
    
    // MakeCovDataReader creates a CovDataReader object to process the
    // given set of input directories. Here 'vis' is a visitor object
    // providing methods to be invoked as we walk through the data,
    // 'indirs' is the set of coverage data directories to examine,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/alias.go

    	targs   *TypeList      // type arguments, or nil
    	fromRHS Type           // RHS of type alias declaration; may be an alias
    	actual  Type           // actual (aliased) type; never an alias
    }
    
    // NewAlias creates a new Alias type with the given type name and rhs.
    // rhs must not be nil.
    func NewAlias(obj *TypeName, rhs Type) *Alias {
    	alias := (*Checker)(nil).newAlias(obj, rhs)
    	// Ensure that alias.actual is set (#65455).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top