Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for beginning (0.21 sec)

  1. src/runtime/mgcpacer.go

    	// that assists and background mark workers started.
    	markStartTime int64
    
    	// dedicatedMarkWorkersNeeded is the number of dedicated mark workers
    	// that need to be started. This is computed at the beginning of each
    	// cycle and decremented as dedicated mark workers get started.
    	dedicatedMarkWorkersNeeded atomic.Int64
    
    	// idleMarkWorkers is two packed int32 values in a single uint64.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	if string(word) != "package" {
    		return "", 0
    	}
    
    	// expect package name
    	_, data = parseWord(data)
    
    	// now ready for import comment, a // or /* */ comment
    	// beginning and ending on the current line.
    	for len(data) > 0 && (data[0] == ' ' || data[0] == '\t' || data[0] == '\r') {
    		data = data[1:]
    	}
    
    	var comment []byte
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/strings/strings_test.go

    func TestReadByte(t *testing.T) {
    	testStrings := []string{"", abcd, faces, commas}
    	for _, s := range testStrings {
    		reader := NewReader(s)
    		if e := reader.UnreadByte(); e == nil {
    			t.Errorf("Unreading %q at beginning: expected error", s)
    		}
    		var res bytes.Buffer
    		for {
    			b, e := reader.ReadByte()
    			if e == io.EOF {
    				break
    			}
    			if e != nil {
    				t.Errorf("Reading %q: %s", s, e)
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	// Everything in that directory, and any target-specific
    	// additions.
    	files := xreaddir(dir)
    
    	// Remove files beginning with . or _,
    	// which are likely to be editor temporary files.
    	// This is the same heuristic build.ScanDir uses.
    	// There do exist real C files beginning with _,
    	// so limit that check to just Go files.
    	files = filter(files, func(p string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    standard output, even if the test printed them to its own standard
    error. (The go command's standard error is reserved for printing
    errors building the tests.)
    
    The go command places $GOROOT/bin at the beginning of $PATH
    in the test's environment, so that tests that execute
    'go' commands use the same 'go' as the parent 'go test' command.
    
    Go test runs in two different modes:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    	}
    
    	// Additional facts we know given the relationship between len and cap.
    	//
    	// TODO: Since prove now derives transitive relations, it
    	// should be sufficient to learn that len(w) <= cap(w) at the
    	// beginning of prove where we look for all len/cap ops.
    	if v.Op == OpSliceLen && r&lt == 0 && ft.caps[v.Args[0].ID] != nil {
    		// len(s) > w implies cap(s) > w
    		// len(s) >= w implies cap(s) >= w
    		// len(s) == w implies cap(s) >= w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    // and equal to the current value. Programs that change the
    // memory profiling rate should do so just once, as early as
    // possible in the execution of the program (for example,
    // at the beginning of main).
    var MemProfileRate int = 512 * 1024
    
    // disableMemoryProfiling is set by the linker if runtime.MemProfile
    // is not used and the link type guarantees nobody else could use it
    // elsewhere.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    	filterRules              proxyutil.LineBuffer
    	natChains                proxyutil.LineBuffer
    	natRules                 proxyutil.LineBuffer
    
    	// largeClusterMode is set at the beginning of syncProxyRules if we are
    	// going to end up outputting "lots" of iptables rules and so we need to
    	// optimize for performance over debuggability.
    	largeClusterMode bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    			// nindent == 0 only for lists of switch/select case clauses;
    			// in those cases each clause is a new section
    			if len(p.output) > 0 {
    				// only print line break if we are not at the beginning of the output
    				// (i.e., we are not printing only a partial program)
    				p.linebreak(p.lineFor(s.Pos()), 1, ignore, i == 0 || nindent == 0 || p.linesFrom(line) > 0)
    			}
    			p.recordLine(&line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    		}
    	}
    	return nil
    }
    
    func splitOutput(out string, wantAuto bool) []string {
    	// gc error messages continue onto additional lines with leading tabs.
    	// Split the output at the beginning of each line that doesn't begin with a tab.
    	// <autogenerated> lines are impossible to match so those are filtered out.
    	var res []string
    	for _, line := range strings.Split(out, "\n") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top