Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 516 for beginning (0.15 sec)

  1. common/config/.golangci-format.yml

          - default # Contains all imports that could not be matched to another section type.
          - prefix(istio.io/) # Groups all imports with the specified Prefix.
      goimports:
        # put imports beginning with prefix after 3rd-party packages;
        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
    issues:
      # Which dirs to exclude: issues from them won't be reported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/os/user/listgroups_unix.go

    		// append the GID to the groups slice.
    
    		// There's no spec for /etc/passwd or /etc/group, but we try to follow
    		// the same rules as the glibc parser, which allows comments and blank
    		// space at the beginning of a line.
    		line = bytes.TrimSpace(line)
    		if len(line) == 0 || line[0] == '#' ||
    			// If you search for a gid in a row where the group
    			// name (the first field) starts with "+" or "-",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/debug/dwarf/line.go

    	// Line is the source code line number corresponding to these
    	// instructions. Lines are numbered beginning at 1. It may be
    	// 0 if these instructions cannot be attributed to any source
    	// line.
    	Line int
    
    	// Column is the column number within the source line of these
    	// instructions. Columns are numbered beginning at 1. It may
    	// be 0 to indicate the "left edge" of the line.
    	Column int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. src/os/getwd.go

    		return "", err
    	}
    	if SameFile(root, dot) {
    		return "/", nil
    	}
    
    	// General algorithm: find name in parent
    	// and then find name of parent. Each iteration
    	// adds /name to the beginning of dir.
    	dir = ""
    	for parent := ".."; ; parent = "../" + parent {
    		if len(parent) >= 1024 { // Sanity check
    			return "", syscall.ENAMETOOLONG
    		}
    		fd, err := openFileNolog(parent, O_RDONLY, 0)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 28 06:28:02 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  5. src/net/sendfile_unix_alt.go

    	// Darwin, FreeBSD, DragonFly and Solaris use 0 as the "until EOF" value.
    	// If you pass in more bytes than the file contains, it will
    	// loop back to the beginning ad nauseam until it's sent
    	// exactly the number of bytes told to. As such, we need to
    	// know exactly how many bytes to send.
    	var remain int64 = 0
    
    	lr, ok := r.(*io.LimitedReader)
    	if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/path/path.go

    //  3. Eliminate each inner .. path name element (the parent directory)
    //     along with the non-.. element that precedes it.
    //  4. Eliminate .. elements that begin a rooted path:
    //     that is, replace "/.." by "/" at the beginning of a path.
    //
    // The returned path ends in a slash only if it is the root "/".
    //
    // If the result of this process is an empty string, Clean
    // returns the string ".".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. pkg/test/util/yml/parts.go

    import (
    	"regexp"
    	"strings"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/yaml"
    )
    
    const (
    	joinSeparator = "\n---\n"
    )
    
    // Split where the '---' appears at the very beginning of a line. This will avoid
    // accidentally splitting in cases where yaml resources contain nested yaml (which
    // is indented).
    var splitRegex = regexp.MustCompile(`(^|\n)---`)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    # or exiting with status 0 (which it should do when interrupted by ^C).
    ! go test -fuzz=FuzzClosePipeAfter -parallel=1
    stdout '^\s*communicating with fuzzing process: invalid character ''!'' looking for beginning of value$'
    ! exists testdata
    
    -- go.mod --
    module test
    
    go 1.17
    -- io_error_test.go --
    package io_error
    
    import (
    	"flag"
    	"testing"
    	"time"
    )
    
    func isWorker() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/os/path.go

    	// Extract the parent folder from path by first removing any trailing
    	// path separator and then scanning backward until finding a path
    	// separator or reaching the beginning of the string.
    	i := len(path) - 1
    	for i >= 0 && IsPathSeparator(path[i]) {
    		i--
    	}
    	for i >= 0 && !IsPathSeparator(path[i]) {
    		i--
    	}
    	if i < 0 {
    		i = 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/discovery.go

    	default:
    		return nil, fmt.Errorf("can't decode XML document using charset %q", charset)
    	}
    }
    
    // parseMetaGoImports returns meta imports from the HTML in r.
    // Parsing ends at the end of the <head> section or the beginning of the <body>.
    func parseMetaGoImports(r io.Reader, mod ModuleMode) ([]metaImport, error) {
    	d := xml.NewDecoder(r)
    	d.CharsetReader = charsetReader
    	d.Strict = false
    	var imports []metaImport
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 18:14:49 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top