Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 516 for beginning (0.21 sec)

  1. src/net/http/responsecontroller.go

    // with writes to the [ResponseWriter].
    //
    // For HTTP/1 requests, the Go HTTP server by default consumes any unread portion of
    // the request body before beginning to write the response, preventing handlers from
    // concurrently reading from the request and writing the response.
    // Calling EnableFullDuplex disables this behavior and permits handlers to continue to read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/go/scanner/errors.go

    package scanner
    
    import (
    	"fmt"
    	"go/token"
    	"io"
    	"sort"
    )
    
    // In an [ErrorList], an error is represented by an *Error.
    // The position Pos, if valid, points to the beginning of
    // the offending token, and the error condition is described
    // by Msg.
    type Error struct {
    	Pos token.Position
    	Msg string
    }
    
    // Error implements the error interface.
    func (e Error) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/deprecation/deprecation.go

    type apiLifecycleRemoved interface {
    	APILifecycleRemoved() (major, minor int)
    }
    
    type apiLifecycleReplacement interface {
    	APILifecycleReplacement() schema.GroupVersionKind
    }
    
    // extract all digits at the beginning of the string
    var leadingDigits = regexp.MustCompile(`^(\d+)`)
    
    // MajorMinor parses a numeric major/minor version from the provided version info.
    // The minor version drops all characters after the first non-digit character:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

        private final String classLoaderName;
    
        public TransformErrorHandler(String classLoaderName) {
            this.classLoaderName = classLoaderName;
        }
    
        /**
         * Marks the beginning of code where a transformation exception may occur.
         *
         * @throws ClassNotFoundException if there is a pending exception from outside the scope
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java

            int r = 32;
            byte[] suffix = new byte[label.length + context.length + 5];
            // per bouncycastle
            // <li>1: K(i) := PRF( KI, [i]_2 || Label || 0x00 || Context || [L]_2 ) with the counter at the very beginning
            // of the fixedInputData (The default implementation has this format)</li>
            // with the parameters
            // <li>1. KDFCounterParameters(ki, null, "Label || 0x00 || Context || [L]_2]", 8);
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.7K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    	// reinitializations they could either end-up being rejected N times and fail or
    	// or not initialize until the last watchcache reinitialization and then not be
    	// terminated. Thus we exercise their termination explicitly at the beginning.
    	wg := &sync.WaitGroup{}
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func(i int) {
    			defer wg.Done()
    
    			w, err := noxuNamespacedResourceClient.Watch(context.TODO(), metav1.ListOptions{})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top