Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 564 for begins (0.16 sec)

  1. pkg/scheduler/scheduler.go

    					&internalqueue.QueueingHintFunction{
    						PluginName:     e.Name(),
    						QueueingHintFn: defaultQueueingHintFn,
    					},
    				)
    		}
    	}
    	return queueingHintMap
    }
    
    // Run begins watching and scheduling. It starts scheduling and blocked until the context is done.
    func (sched *Scheduler) Run(ctx context.Context) {
    	logger := klog.FromContext(ctx)
    	sched.SchedulingQueue.Run(logger)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *
       * <ol>
       *   <li>execution will not stop until the task queue is empty.
       *   <li>tasks will begin execution with the thread marked as not interrupted - any interruption
       *       applies only to the task that was running at the point of interruption.
       *   <li>if the thread was interrupted before the SequentialExecutor's worker begins execution,
       *       the interrupt will be restored to the thread after it completes so that its {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    // of the form tile/H/L/NNN[.p/W].
    // The .p/W suffix is present only for partial tiles, meaning W < 2**H.
    // The NNN element is an encoding of N into 3-digit path elements.
    // All but the last path element begins with an "x".
    // For example,
    // Tile{H: 3, L: 4, N: 1234067, W: 1}'s path
    // is tile/3/4/x001/x234/067.p/1, and
    // Tile{H: 3, L: 4, N: 1234067, W: 8}'s path
    // is tile/3/4/x001/x234/067.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/vendor/rsc.io/markdown/parse.go

    	// <del>abc</del> in HTML.
    	Strikethrough bool
    
    	// TaskListItems determines whether the parser accepts
    	// “task list items” as defined in GitHub Flavored Markdown.
    	// When a list item begins with the plain text [ ] or [x]
    	// that turns into an unchecked or checked check box.
    	TaskListItems bool
    
    	// TODO
    	AutoLinkText       bool
    	AutoLinkAssumeHTTP bool
    
    	// TODO
    	Table bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/go/doc/comment/parse.go

    		case strings.HasPrefix(t, "''"):
    			writeUntil(i)
    			w.WriteRune('”')
    			i += 2
    			wrote = i
    		default:
    			i++
    		}
    	}
    	flush(len(s))
    	return out
    }
    
    // autoURL checks whether s begins with a URL that should be hyperlinked.
    // If so, it returns the URL, which is a prefix of s, and ok == true.
    // Otherwise it returns "", false.
    // The caller should skip over the first len(url) bytes of s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  7. src/text/template/parse/lex.go

    	"end":      itemEnd,
    	"if":       itemIf,
    	"range":    itemRange,
    	"nil":      itemNil,
    	"template": itemTemplate,
    	"with":     itemWith,
    }
    
    const eof = -1
    
    // Trimming spaces.
    // If the action begins "{{- " rather than "{{", then all space/tab/newlines
    // preceding the action are trimmed; conversely if it ends " -}}" the
    // leading spaces are trimmed. This is done entirely in the lexer; the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top