Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 252 for beginning (0.24 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/internal/work/security.go

    // guard against any command-line argument beginning with @,
    // even things like "-I @foo".
    // We use load.SafeArg (which is even more conservative)
    // to reject these.
    //
    // Even worse, gcc -I@foo (one arg) turns into cc1 -I @foo (two args),
    // so although gcc doesn't expand the @foo, cc1 will.
    // So out of paranoia, we reject @ at the beginning of every
    // flag argument that might be split into its own argument.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/net/textproto/reader.go

    	// elide leading dots, rewrite trailing \r\n into \n,
    	// and detect ending .\r\n line.
    	const (
    		stateBeginLine = iota // beginning of line; initial state; must be zero
    		stateDot              // read . at beginning of line
    		stateDotCR            // read .\r at beginning of line
    		stateCR               // read \r (possibly at end of line)
    		stateData             // reading data in middle of line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. guava/src/com/google/common/base/Strings.java

       * @param minLength the minimum length the resulting string must have. Can be zero or negative, in
       *     which case the input string is always returned.
       * @param padChar the character to insert at the beginning of the result until the minimum length
       *     is reached
       * @return the padded string
       */
      public static String padStart(String string, int minLength, char padChar) {
        checkNotNull(string); // eager for GWT.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:47:03 UTC 2021
    - 12.6K 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