Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 516 for beginning (0.12 sec)

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

                return String.format(HEADER_TEMPLATE, expectedLines.size(), actualLines.size());
            }
        }
    
        /**
         * This exception may be thrown containing 0 potential matches, if a matching line at the end/beginning of the actual lines would begin a potential match group
         * that would extend beyond the end of the given actual lines.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/looprotate.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    // loopRotate converts loops with a check-loop-condition-at-beginning
    // to loops with a check-loop-condition-at-end.
    // This helps loops avoid extra unnecessary jumps.
    //
    //	 loop:
    //	   CMPQ ...
    //	   JGE exit
    //	   ...
    //	   JMP loop
    //	 exit:
    //
    //	  JMP entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/mvs/errors.go

    		return module.Version{}
    	}
    	return e.stack[len(e.stack)-1].m
    }
    
    func (e *BuildListError) Error() string {
    	b := &strings.Builder{}
    	stack := e.stack
    
    	// Don't print modules at the beginning of the chain without a
    	// version. These always seem to be the main module or a
    	// synthetic module ("target@").
    	for len(stack) > 0 && stack[0].m.Version == "" {
    		stack = stack[1:]
    	}
    
    	if len(stack) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 17:22:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    func (d *Decoder) parseDynamicTableSizeUpdate() error {
    	// RFC 7541, sec 4.2: This dynamic table size update MUST occur at the
    	// beginning of the first header block following the change to the dynamic table size.
    	if !d.firstField && d.dynTab.size > 0 {
    		return DecodingError{errors.New("dynamic table size update MUST occur at the beginning of a header block")}
    	}
    
    	buf := d.buf
    	size, buf, err := readVarInt(5, buf)
    	if err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  5. src/encoding/csv/reader.go

    // the ending newline character) is not considered a blank line.
    //
    // Fields which start and stop with the quote character " are called
    // quoted-fields. The beginning and ending quote are not part of the
    // field.
    //
    // The source:
    //
    //	normal string,"quoted-field"
    //
    // results in the fields
    //
    //	{`normal string`, `quoted-field`}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/regexp/backtrack.go

    		return nil
    	}
    	if startCond&syntax.EmptyBeginText != 0 && pos != 0 {
    		// Anchored match, past beginning of text.
    		return nil
    	}
    
    	b := newBitState()
    	i, end := b.inputs.init(nil, ib, is)
    	b.reset(re.prog, end, ncap)
    
    	// Anchored search must start at the beginning of the input
    	if startCond&syntax.EmptyBeginText != 0 {
    		if len(b.cap) > 0 {
    			b.cap[0] = pos
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/file/util/kubeyaml/kubeyaml.go

    	startLine := r.currLine + 1
    	foundStart := false
    	for {
    		r.currLine++
    		line, err := r.reader.Read()
    		if err != nil && err != io.EOF {
    			return nil, startLine, err
    		}
    
    		// detect beginning of the chunk
    		if !bytes.Equal(line, []byte("\n")) && !bytes.Equal(line, []byte(yamlSeparator)) && !foundStart {
    			startLine = r.currLine
    			foundStart = true
    		}
    
    		sep := len([]byte(separator))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 02:41:40 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainBuildOperationsFixture.groovy

     * <p>
     * When using this fixture make sure to first call {@link JavaToolchainBuildOperationsFixture#captureBuildOperations captureBuildOperations}
     * in the {@code setup} method of the test class or in the beginning of a test itself.
     */
    @SelfType(AbstractIntegrationSpec)
    trait JavaToolchainBuildOperationsFixture {
    
        private BuildOperationsFixture operations
    
        void captureBuildOperations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    		}
    		if err := checkArguments(fields); err != nil {
    			return err
    		}
    	} else {
    		// Comment with +build but not at beginning.
    		if !pastCutoff {
    			return fmt.Errorf("possible malformed +build comment")
    		}
    	}
    	return nil
    }
    
    func checkArguments(fields []string) error {
    	for _, arg := range fields[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/container/ring/ring.go

    // license that can be found in the LICENSE file.
    
    // Package ring implements operations on circular lists.
    package ring
    
    // A Ring is an element of a circular list, or ring.
    // Rings do not have a beginning or end; a pointer to any ring element
    // serves as reference to the entire ring. Empty rings are represented
    // as nil Ring pointers. The zero value for a Ring is a one-element
    // ring with a nil Value.
    type Ring struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top