Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 581 for begins (0.2 sec)

  1. src/fmt/print.go

    		}
    	}
    	return 0, 1, false
    }
    
    // argNumber returns the next argument to evaluate, which is either the value of the passed-in
    // argNum or the value of the bracketed integer that begins format[i:]. It also returns
    // the new value of i, that is, the index of the next byte of the format to process.
    func (p *pp) argNumber(argNum int, format string, i int, numArgs int) (newArgNum, newi int, found bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadelf/ldelf.go

    	entsize     uint64
    	base        []byte
    	readOnlyMem bool // Is this section in readonly memory?
    	sym         loader.Sym
    }
    
    type ElfObj struct {
    	f         *bio.Reader
    	base      int64 // offset in f where ELF begins
    	length    int64 // length of ELF
    	is64      int
    	name      string
    	e         binary.ByteOrder
    	sect      []ElfSect
    	nsect     uint
    	nsymtab   int
    	symtab    *ElfSect
    	symstr    *ElfSect
    	type_     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/net/url/url.go

    //   - if u.Host is empty, host/ is omitted.
    //   - if u.Scheme and u.Host are empty and u.User is nil,
    //     the entire scheme://userinfo@host/ is omitted.
    //   - if u.Host is non-empty and u.Path begins with a /,
    //     the form host/path does not add its own /.
    //   - if u.RawQuery is empty, ?query is omitted.
    //   - if u.Fragment is empty, #fragment is omitted.
    func (u *URL) String() string {
    	var buf strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/InetAddresses.java

     * information on "bogons", including lists of IPv6 bogon space, see:
     *
     * <ul>
     *   <li><a target="_parent"
     *       href="http://en.wikipedia.org/wiki/Bogon_filtering">http://en.wikipedia.
     *       org/wiki/Bogon_filtering</a>
     *   <li><a target="_parent"
     *       href="http://www.cymru.com/Bogons/ipv6.txt">http://www.cymru.com/Bogons/ ipv6.txt</a>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    // Values passed through a request's decision
    const (
    	// Serve this one
    	decisionExecute requestDecision = iota
    
    	// This one's context timed out / was canceled
    	decisionCancel
    )
    
    // StartRequest begins the process of handling a request.  We take the
    // approach of updating the metrics about total requests queued and
    // executing at each point where there is a change in that quantity,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/InetAddresses.java

     * information on "bogons", including lists of IPv6 bogon space, see:
     *
     * <ul>
     *   <li><a target="_parent"
     *       href="http://en.wikipedia.org/wiki/Bogon_filtering">http://en.wikipedia.
     *       org/wiki/Bogon_filtering</a>
     *   <li><a target="_parent"
     *       href="http://www.cymru.com/Bogons/ipv6.txt">http://www.cymru.com/Bogons/ ipv6.txt</a>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/coderepo.go

    func (fi dataFileInfo) Sys() any           { return nil }
    
    func (fi dataFileInfo) String() string {
    	return fs.FormatFileInfo(fi)
    }
    
    // hasPathPrefix reports whether the path s begins with the
    // elements in prefix.
    func hasPathPrefix(s, prefix string) bool {
    	switch {
    	default:
    		return false
    	case len(s) == len(prefix):
    		return s == prefix
    	case len(s) > len(prefix):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    // stipulates a full lock.  Absence of either suffix means that either
    // (a) the lock must NOT be held at call time and will not be held
    // upon return or (b) locking is irrelevant.
    
    // StartFunction begins the process of handling a request.  If the
    // request gets queued then this function uses the given hashValue as
    // the source of entropy as it shuffle-shards the request into a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pe.go

    			if splitResources {
    				// If we're a split resource section, and that section has relocation
    				// symbols, then the data that it points to doesn't actually begin at
    				// the virtual address listed in this current section, but rather
    				// begins at the section immediately after this one. So, in order to
    				// calculate the proper virtual address of the data it's pointing to,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  10. src/flag/flag.go

    // decompose the comma-separated string into the slice.
    func (f *FlagSet) Var(value Value, name string, usage string) {
    	// Flag must not begin "-" or contain "=".
    	if strings.HasPrefix(name, "-") {
    		panic(f.sprintf("flag %q begins with -", name))
    	} else if strings.Contains(name, "=") {
    		panic(f.sprintf("flag %q contains =", name))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top