Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 332 for begins (0.82 sec)

  1. src/cmd/go/internal/modcmd/why.go

    to exclude tests of dependencies.
    
    The output is a sequence of stanzas, one for each package or module
    name on the command line, separated by blank lines. Each stanza begins
    with a comment line "# package" or "# module" giving the target
    package or module. Subsequent lines give a path through the import
    graph, one package per line. If the package or module is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/os/env.go

    func isAlphaNum(c uint8) bool {
    	return c == '_' || '0' <= c && c <= '9' || 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z'
    }
    
    // getShellName returns the name that begins the string and the number of bytes
    // consumed to extract it. If the name is enclosed in {}, it's part of a ${}
    // expansion and two more bytes are needed than the length of the name.
    func getShellName(s string) (string, int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/sym.go

    		return a.Name < b.Name
    	}
    	if !ea {
    		return a.Pkg.Path < b.Pkg.Path
    	}
    	return false
    }
    
    // IsExported reports whether name is an exported Go symbol (that is,
    // whether it begins with an upper-case letter).
    func IsExported(name string) bool {
    	if r := name[0]; r < utf8.RuneSelf {
    		return 'A' <= r && r <= 'Z'
    	}
    	r, _ := utf8.DecodeRuneInString(name)
    	return unicode.IsUpper(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    Phase 3 - Execution  :: During the execution phase, Gradle executes each of the selected tasks.
    
    When Gradle is invoked to execute a task, the lifecycle begins.
    Let's see it in action.
    
    image::gradle-build-lifecycle.png[]
    
    == Step 2. Update the Settings File
    
    Add the following line to the top of the Settings file:
    
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/internal/pkgpattern/pkgpattern.go

    			if strings.Contains(name, vendorChar) {
    				return false
    			}
    			name = replaceVendor(name, vendorChar)
    		}
    		return reg.MatchString(name)
    	}
    }
    
    // hasPathPrefix reports whether the path s begins with the
    // elements in prefix.
    func hasPathPrefix(s, prefix string) bool {
    	switch {
    	default:
    		return false
    	case len(s) == len(prefix):
    		return s == prefix
    	case len(s) > len(prefix):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. src/go/printer/gobuild.go

    	// (We'll add another blank line after our comment block.)
    	// When we start dropping // +build comments, we can skip over /* */ comments too.
    	// Note that we are processing tabwriter input, so every comment
    	// begins and ends with a tabwriter.Escape byte.
    	// And some newlines have turned into \f bytes.
    	insert := 0
    	for pos := 0; ; {
    		// Skip leading space at beginning of line.
    		blank := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream.go

    }
    
    // NewReader creates a WebSocket pipe that will copy the contents of r to a provided
    // WebSocket connection. If ping is true, a zero length message will be sent to the client
    // before the stream begins reading.
    //
    // The protocols parameter maps subprotocol names to StreamProtocols. The empty string
    // subprotocol name is used if websocket.Config.Protocol is empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/internal/objfile/pe.go

    		return nil, err
    	}
    	return &peFile{f}, nil
    }
    
    func (f *peFile) symbols() ([]Sym, error) {
    	// Build sorted list of addresses of all symbols.
    	// We infer the size of a symbol by looking at where the next symbol begins.
    	var addrs []uint64
    
    	imageBase, _ := f.imageBase()
    
    	var syms []Sym
    	for _, s := range f.pe.Symbols {
    		const (
    			N_UNDEF = 0  // An undefined (extern) symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. src/encoding/json/indent.go

    // for some set of compacted JSON with the indent being a single tab.
    // Specify a growth factor slightly larger than what is observed
    // to reduce probability of allocation in appendIndent.
    // A factor no higher than 2 ensures that wasted space never exceeds 50%.
    const indentGrowthFactor = 2
    
    // Indent appends to dst an indented form of the JSON-encoded src.
    // Each element in a JSON object or array begins on a new,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/internal/testenv/testenv_test.go

    	// of emulation "emu" will appear as a "host" suffix after the GOOS and
    	// GOARCH because it modifies the run environment in such a way that it
    	// the target GOOS and GOARCH may not match the host. This suffix always
    	// begins with an underscore.
    	return strings.HasSuffix(builderName, "-emu") || strings.Contains(builderName, "_emu")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top