Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 581 for begins (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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/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)
Back to top