Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 432 for begins (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/regexp/syntax/simplify.go

    	case OpRepeat:
    		// Special special case: x{0} matches the empty string
    		// and doesn't even need to consider x.
    		if re.Min == 0 && re.Max == 0 {
    			return &Regexp{Op: OpEmptyMatch}
    		}
    
    		// The fun begins.
    		sub := re.Sub[0].Simplify()
    
    		// x{n,} means at least n matches of x.
    		if re.Max == -1 {
    			// Special case: x{0,} is x*.
    			if re.Min == 0 {
    				return simplify1(OpStar, re.Flags, sub, nil)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/test2json/main.go

    //	fail   - the test or benchmark failed
    //	output - the test printed output
    //	skip   - the test was skipped or the package contained no tests
    //
    // Every JSON stream begins with a "start" event.
    //
    // The Package field, if present, specifies the package being tested.
    // When the go command runs parallel tests in -json mode, events from
    // different tests are interlaced; the Package field allows readers to
    // separate them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top