Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for piece (0.05 sec)

  1. cmd/object-api-utils.go

    	}
    
    	// Split on dot and check each piece conforms to rules.
    	allNumbers := true
    	pieces := strings.Split(bucket, dnsDelimiter)
    	for _, piece := range pieces {
    		if len(piece) == 0 || piece[0] == '-' ||
    			piece[len(piece)-1] == '-' {
    			// Current piece has 0-length or starts or
    			// ends with a hyphen.
    			return false
    		}
    		// Now only need to check if each piece is a valid
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 08 15:29:58 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Splitter.java

      /**
       * Returns a splitter that divides strings into pieces of the given length. For example, {@code
       * Splitter.fixedLength(2).split("abcde")} returns an iterable containing {@code ["ab", "cd",
       * "e"]}. The last piece can be smaller than {@code length} but will never be empty.
       *
       * <p><b>Note:</b> if {@link #fixedLength} is used in conjunction with {@link #limit}, the final
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 21:14:05 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    see [this guide](./platforms/documentation/docs/README.md).
    
    ### Creating commits and writing commit messages
    
    The commit messages that accompany your code changes are an important piece of documentation. Please follow these guidelines when creating commits:
    
    * [Write good commit messages.](https://cbea.ms/git-commit/#seven-rules)
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Nov 05 15:15:33 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/sql-databases.md

    {!../../docs_src/sql_databases/sql_app/crud.py!}
    ```
    
    /// tip
    
    ๐Ÿ— ๐Ÿ”ข ๐Ÿ‘ˆ ๐Ÿ•ด ๐Ÿ’ก ๐Ÿ”— โฎ๏ธ ๐Ÿ’ฝ (๐Ÿคš ๐Ÿ‘ฉโ€๐Ÿ’ป โš–๏ธ ๐Ÿฌ) ๐Ÿ”ฌ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ ๐Ÿ”ข*, ๐Ÿ‘† ๐Ÿ’ช ๐ŸŒ– ๐Ÿ’ช โ™ป ๐Ÿ‘ซ ๐Ÿ’— ๐Ÿ• &amp; ๐Ÿšฎ <abbr title="Automated tests, written in code, that check if another piece of code is working correctly.">โš’ ๐Ÿ’ฏ</abbr> ๐Ÿ‘ซ.
    
    ///
    
    ### โœ ๐Ÿ’ฝ
    
    ๐Ÿ”œ โœ ๐Ÿš™ ๐Ÿ”ข โœ ๐Ÿ’ฝ.
    
    ๐Ÿ”:
    
    * โœ ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿท *๐Ÿ‘* โฎ๏ธ ๐Ÿ‘† ๐Ÿ“Š.
    * `add` ๐Ÿ‘ˆ ๐Ÿ‘ ๐ŸŽš ๐Ÿ‘† ๐Ÿ’ฝ ๐ŸŽ‰.
    * `commit` ๐Ÿ”€ ๐Ÿ’ฝ (๐Ÿ‘ˆ ๐Ÿ‘ซ ๐Ÿ–Š).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/parse.go

    		return
    	}
    	// General address (with a few exceptions) looks like
    	//	$symยฑoffset(SB)(reg)(index*scale)
    	// Exceptions are:
    	//
    	//	R1
    	//	offset
    	//	$offset
    	// Every piece is optional, so we scan left to right and what
    	// we discover tells us where we are.
    
    	// Prefix: $.
    	var prefix rune
    	switch tok := p.peek(); tok {
    	case '$', '*':
    		prefix = rune(tok)
    		p.next()
    	}
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 04 18:16:59 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/ast.go

    func commentText(g *ast.CommentGroup) string {
    	pieces := make([]string, 0, len(g.List))
    	for _, com := range g.List {
    		c := com.Text
    		// Remove comment markers.
    		// The parser has given us exactly the comment text.
    		switch c[1] {
    		case '/':
    			//-style comment (no newline at the end)
    			c = c[2:] + "\n"
    		case '*':
    			/*-style comment */
    			c = c[2 : len(c)-2]
    		}
    		pieces = append(pieces, c)
    	}
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Oct 14 15:47:06 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/bufio/bufio.go

    func (b *Reader) ReadBytes(delim byte) ([]byte, error) {
    	full, frag, n, err := b.collectFragments(delim)
    	// Allocate new buffer to hold the full pieces and the fragment.
    	buf := make([]byte, n)
    	n = 0
    	// Copy full pieces and fragment in.
    	for i := range full {
    		n += copy(buf[n:], full[i])
    	}
    	copy(buf[n:], frag)
    	return buf, err
    }
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  8. LICENSE

    have the freedom to distribute copies of free software (and charge for
    them if you wish), that you receive source code or can get it if you
    want it, that you can change the software or use pieces of it in new
    free programs, and that you know you can do these things.
    
      Developers that use our General Public Licenses protect your rights
    with two steps: (1) assert copyright on the software, and (2) offer
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  9. docs/fr/docs/alternatives.md

    /// check | "A inspirรฉ **FastAPI** ร "
    
    รŠtre un micro-framework. Il est donc facile de combiner les outils et les piรจces nรฉcessaires.
    
    Proposer un systรจme de routage simple et facile ร  utiliser.
    
    ///
    
    ### <a href="https://requests.readthedocs.io" class="external-link" target="_blank">Requests</a>
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. docs/fr/docs/async.md

    > Vous devez nettoyer une grande et sale maison.
    
    *Oui, c'est toute l'histoire*.
    
    ---
    
    Il n'y a plus d'attente ๐Ÿ•™ nulle part, juste beaucoup de travail ร  effectuer, dans diffรฉrentes piรจces de la maison.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top