Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 343 for begins (0.19 sec)

  1. src/runtime/mgclimit.go

    type limiterEvent struct {
    	stamp atomic.Uint64 // Stores a limiterEventStamp.
    }
    
    // start begins tracking a new limiter event of the current type. If an event
    // is already in flight, then a new event cannot begin because the current time is
    // already being attributed to that event. In this case, this function returns false.
    // Otherwise, it returns true.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/internal/fuzz/fuzz.go

    	// error early. If limit is zero, there is no limit on calls to the
    	// fuzz function.
    	limit int64
    
    	// warmup indicates whether this is a warmup input before fuzzing begins. If
    	// true, the input should not be fuzzed.
    	warmup bool
    
    	// coverageData reflects the coordinator's current coverageMask.
    	coverageData []byte
    }
    
    type fuzzResult struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/go/types/assignments.go

    		check.softErrorf(pos, NoNewVar, "no new variables on left side of :=")
    		return
    	}
    
    	// declare new variables
    	// spec: "The scope of a constant or variable identifier declared inside
    	// a function begins at the end of the ConstSpec or VarSpec (ShortVarDecl
    	// for short variable declarations) and ends at the end of the innermost
    	// containing block."
    	scopePos := endPos(rhs[len(rhs)-1])
    	for _, obj := range newVars {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/assignments.go

    		check.softErrorf(pos, NoNewVar, "no new variables on left side of :=")
    		return
    	}
    
    	// declare new variables
    	// spec: "The scope of a constant or variable identifier declared inside
    	// a function begins at the end of the ConstSpec or VarSpec (ShortVarDecl
    	// for short variable declarations) and ends at the end of the innermost
    	// containing block."
    	scopePos := endPos(rhs[len(rhs)-1])
    	for _, obj := range newVars {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/compile.go

    // returning empty string if this was successful or a string explaining
    // the error if it was not.
    // A version of the phase name with "_" replaced by " " is also checked for a match.
    // If the phase name begins a '~' then the rest of the underscores-replaced-with-blanks
    // version is used as a regular expression to match the phase name(s).
    //
    // Special cases that have turned out to be useful:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/html/template/transition.go

    func tError(c context, s []byte) (context, int) {
    	return c, len(s)
    }
    
    // eatAttrName returns the largest j such that s[i:j] is an attribute name.
    // It returns an error if s[i:] does not look like it begins with an
    // attribute name, such as encountering a quote mark without a preceding
    // equals sign.
    func eatAttrName(s []byte, i int) (int, *Error) {
    	for j := i; j < len(s); j++ {
    		switch s[j] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    Every package in a program must have a unique import path.
    By convention, this is arranged by starting each path with a
    unique prefix that belongs to you. For example, paths used
    internally at Google all begin with 'google', and paths
    denoting remote repositories begin with the path to the code,
    such as 'github.com/user/repo'.
    
    Packages in a program need not have unique package names,
    but there are two reserved package names with special meaning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pkg/controller/resourcequota/resource_quota_controller.go

    	return func(ctx context.Context) {
    		for {
    			if quit := workFunc(ctx); quit {
    				klog.FromContext(ctx).Info("resource quota controller worker shutting down")
    				return
    			}
    		}
    	}
    }
    
    // Run begins quota controller using the specified number of workers
    func (rq *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer rq.queue.ShutDown()
    	defer rq.missingUsageQueue.ShutDown()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. cmd/object-api-utils_test.go

    		{"", false},
    		{"a", false},
    		{"ab", false},
    		{".starts-with-a-dot", false},
    		{"ends-with-a-dot.", false},
    		{"ends-with-a-dash-", false},
    		{"-starts-with-a-dash", false},
    		{"THIS-BEGINS-WITH-UPPERCASe", false},
    		{"tHIS-ENDS-WITH-UPPERCASE", false},
    		{"ThisBeginsAndEndsWithUpperCasE", false},
    		{"una ñina", false},
    		{"dash-.may-not-appear-next-to-dot", false},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/text/template/doc.go

    When parsing a template, another template may be defined and associated with the
    template being parsed. Template definitions must appear at the top level of the
    template, much like global variables in a Go program.
    
    The syntax of such definitions is to surround each template declaration with a
    "define" and "end" action.
    
    The define action names the template being created by providing a string
    constant. Here is a simple example:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top