Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 302 for beginning (0.31 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcher.java

         *
         * @return {@code true} if the actual index is a valid potential match position for the given number of expected lines,
         * and the actual lines matches the corresponding expected lines beginning at that index
         */
        private static boolean isMatchingIndex(List<String> expectedLines, List<String> actualLines, int actualMatchStartIdx) {
            for (int expectedIdx = 0; expectedIdx < expectedLines.size(); expectedIdx++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/index/suffixarray/suffixarray.go

    		return
    	}
    
    	// regexp has a non-empty literal prefix; Lookup(lit) computes
    	// the indices of possible complete matches; use these as starting
    	// points for anchored searches
    	// (regexp "^" matches beginning of input, not beginning of line)
    	r = regexp.MustCompile("^" + r.String()) // compiles because r compiled
    
    	// same comment about Lookup applies here as in the loop above
    	for n1 := n; ; n1 += 2 * (n - len(result)) /* overflow ok */ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/help.go

    {{end}}{{end}}`
    
    // commentWriter writes a Go comment to the underlying io.Writer,
    // using line comment form (//).
    type commentWriter struct {
    	W            io.Writer
    	wroteSlashes bool // Wrote "//" at the beginning of the current line.
    }
    
    func (c *commentWriter) Write(p []byte) (int, error) {
    	var n int
    	for i, b := range p {
    		if !c.wroteSlashes {
    			s := "//"
    			if b != '\n' {
    				s = "// "
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/go/printer/gobuild.go

    	// 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
    		for pos < len(p.output) && (p.output[pos] == ' ' || p.output[pos] == '\t') {
    			pos++
    		}
    		// Skip over // comment if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/runtime/mcache.go

    	scanAlloc  uintptr // bytes of scannable heap allocated
    
    	// Allocator cache for tiny objects w/o pointers.
    	// See "Tiny allocator" comment in malloc.go.
    
    	// tiny points to the beginning of the current tiny block, or
    	// nil if there is no current tiny block.
    	//
    	// tiny is a heap pointer. Since mcache is in non-GC'd memory,
    	// we handle it by clearing it in releaseAll during mark
    	// termination.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    					}
    					return false, nil
    				},
    			)
    		} else if rp.Operation == networking.EnvoyFilter_Patch_INSERT_BEFORE {
    			// insert before without a route match is same as insert in the beginning
    			if !hasRouteMatch(rp) {
    				virtualHost.Routes = append([]*route.Route{proto.Clone(rp.Value).(*route.Route)}, virtualHost.Routes...)
    				continue
    			}
    			virtualHost.Routes, applied = insertBeforeFunc(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/cleanup.go

    func removeCRDs(istioYaml string) string {
    	allParts := yml.SplitString(istioYaml)
    	nonCrds := make([]string, 0, len(allParts))
    
    	// Make the regular expression multi-line and anchor to the beginning of the line.
    	r := regexp.MustCompile(`(?m)^kind: CustomResourceDefinition$`)
    
    	for _, p := range allParts {
    		if r.MatchString(p) {
    			continue
    		}
    		nonCrds = append(nonCrds, p)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

         *
         * <p>There are a number of differences compared to {@link java.util.Properties#store(java.io.Writer, String)}:</p>
         * <ul>
         *     <li>no timestamp comment is generated at the beginning of the file</li>
         *     <li>the lines in the resulting files are separated by a pre-set separator instead of the system default line separator</li>
         *     <li>the properties are sorted alphabetically</li>
         * </ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

        /**
         * Declares that this problem is in a file at a certain global position with a given length.
         *
         * @param path the file location
         * @param offset the zero-indexed global offset from the beginning of the file
         * @param length the length of the text
         * @return this
         * @since 8.6
         */
        ProblemSpec offsetInFileLocation(String path, int offset, int length);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/intervals.go

    	}
    	r := c.s
    	return r, nil
    }
    
    // Live method should be invoked on instruction at position p if instr
    // contains an upwards-exposed use of a resource. See the example in
    // the comment at the beginning of this file for an example.
    func (c *IntervalsBuilder) Live(pos int) error {
    	if pos < 0 {
    		return fmt.Errorf("bad pos, negative")
    	}
    	if c.last() == -1 {
    		c.setLast(pos)
    		if debugtrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top