Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 391 for beginning (0.32 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	LParen LParen
    	Token  []string
    	Line   []*Line
    	RParen RParen
    }
    
    func (x *LineBlock) Span() (start, end Position) {
    	return x.Start, x.RParen.Pos.add(")")
    }
    
    // An LParen represents the beginning of a parenthesized line block.
    // It is a place to store suffix comments.
    type LParen struct {
    	Comments
    	Pos Position
    }
    
    func (x *LParen) Span() (start, end Position) {
    	return x.Pos, x.Pos.add(")")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/syscall/mksyscall.pl

    # license that can be found in the LICENSE file.
    
    # This program reads a file containing function prototypes
    # (like syscall_darwin.go) and generates system call bodies.
    # The prototypes are marked by lines beginning with "//sys"
    # and read like func declarations if //sys is replaced by func, but:
    #	* The parameter lists must give a name for each argument.
    #	  This includes return parameters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/CircularEvaluationSpec.groovy

                // A Property may wrap the provider in the type-adapting one, adding an extra item to the evaluation chain.
                // To account for this, we only check the beginning of the chain, and its last element.
                assert ex.evaluationCycle[0..1] == [provider, property]
                assert ex.evaluationCycle.last() == provider
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top