Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 343 for begins (0.68 sec)

  1. src/reflect/abi.go

    	//
    	// For instance, if this abiSeq represents 3 arguments
    	// passed to a function, then the 2nd argument's steps
    	// begin at steps[valueStart[1]].
    	//
    	// Because reflect accepts Go arguments in distinct
    	// Values and each Value is stored separately, each abiStep
    	// that begins a new argument will have its offset
    	// field == 0.
    	steps      []abiStep
    	valueStart []int
    
    	stackBytes   uintptr // stack space used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    		validateDeletion ValidateObjectFunc, cachedExistingObject runtime.Object) error
    
    	// Watch begins watching the specified key. Events are decoded into API objects,
    	// and any items selected by 'p' are sent down to returned watch.Interface.
    	// resourceVersion may be used to specify what version to begin watching,
    	// which should be the current resourceVersion, and no longer rv+1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. android/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
    - 39K bytes
    - Viewed (0)
  4. src/go/types/decl.go

    			}
    
    			// process function literals in init expressions before scope changes
    			check.processDelayed(top)
    
    			// 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 := d.spec.End()
    			for i, name := range d.spec.Names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal.go

    // "attr" option in the field tag.
    type MarshalerAttr interface {
    	MarshalXMLAttr(name Name) (Attr, error)
    }
    
    // MarshalIndent works like [Marshal], but each XML element begins on a new
    // indented line that starts with prefix and is followed by one or more
    // copies of indent according to the nesting depth.
    func MarshalIndent(v any, prefix, indent string) ([]byte, error) {
    	var b bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. cmd/object-api-datatypes.go

    type ListMultipartsInfo struct {
    	// Together with upload-id-marker, this parameter specifies the multipart upload
    	// after which listing should begin.
    	KeyMarker string
    
    	// Together with key-marker, specifies the multipart upload after which listing
    	// should begin. If key-marker is not specified, the upload-id-marker parameter
    	// is ignored.
    	UploadIDMarker string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. src/mime/multipart/multipart.go

    	if err != nil && err.Error() == "message too large" {
    		err = ErrMessageTooLarge
    	}
    	return err
    }
    
    // Read reads the body of a part, after its headers and before the
    // next part (if any) begins.
    func (p *Part) Read(d []byte) (n int, err error) {
    	return p.r.Read(d)
    }
    
    // partReader implements io.Reader by reading raw bytes directly from the
    // wrapped *Part, without doing any Transfer-Encoding decoding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top