Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 103 for myrunes (0.28 sec)

  1. src/strconv/doc.go

    // any non-ASCII Unicode with \u:
    //
    //	q := strconv.Quote("Hello, 世界")
    //	q := strconv.QuoteToASCII("Hello, 世界")
    //
    // [QuoteRune] and [QuoteRuneToASCII] are similar but accept runes and
    // return quoted Go rune literals.
    //
    // [Unquote] and [UnquoteChar] unquote Go string and rune literals.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/unicode/utf8/utf8.go

    	default:
    		return append(p, t4|byte(r>>18), tx|byte(r>>12)&maskx, tx|byte(r>>6)&maskx, tx|byte(r)&maskx)
    	}
    }
    
    // RuneCount returns the number of runes in p. Erroneous and short
    // encodings are treated as single runes of width 1 byte.
    func RuneCount(p []byte) int {
    	np := len(p)
    	var n int
    	for i := 0; i < np; {
    		n++
    		c := p[i]
    		if c < RuneSelf {
    			// ASCII fast path
    			i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/unicode/letter.go

    // Methods of SpecialCase customize (by overriding) the standard mappings.
    type SpecialCase []CaseRange
    
    // BUG(r): There is no mechanism for full case folding, that is, for
    // characters that involve multiple runes in the input or output.
    
    // Indices into the Delta arrays inside CaseRanges for case mapping.
    const (
    	UpperCase = iota
    	LowerCase
    	TitleCase
    	MaxCase
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_graph_version.txt

    # For this module, Go 1.17 prunes out a (transitive and otherwise-irrelevant)
    # requirement on a retracted higher version of a dependency.
    # However, when Go 1.16 reads the same requirements from the go.mod file,
    # it does not prune out that requirement, and selects the retracted version.
    #
    # The Go 1.16 module graph looks like:
    #
    # m ---- lazy v0.1.0 ---- requireincompatible v0.1.0 ---- incompatible v2.0.0+incompatible
    # |        |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_while_results.cc

    struct RemoveUnusedWhileResultsPass
        : public impl::RemoveUnusedWhileResultsPassBase<
              RemoveUnusedWhileResultsPass> {
      void runOnOperation() override;
    };
    
    // Prunes result defining op if possible, returns true if pruning was done.
    bool TryPruneResultDefiningOp(TF::WhileRegionOp while_op, OpResult result) {
      // Don't prune if result is used.
      if (!result.use_empty()) return false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 16 01:49:07 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. src/fmt/doc.go

    that is, runes. (This differs from C's printf where the
    units are always measured in bytes.) Either or both of the flags
    may be replaced with the character '*', causing their values to be
    obtained from the next operand (preceding the one to format),
    which must be of type int.
    
    For most values, width is the minimum number of runes to output,
    padding the formatted form with spaces if necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/regexp/syntax/regexp.go

    const (
    	OpNoMatch        Op = 1 + iota // matches no strings
    	OpEmptyMatch                   // matches empty string
    	OpLiteral                      // matches Runes sequence
    	OpCharClass                    // matches Runes interpreted as range pair list
    	OpAnyCharNotNL                 // matches any character except newline
    	OpAnyChar                      // matches any character
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor_embed.txt

    replace (
    	example.com/a v0.1.0 => ../a
    )
    -- embed_go122/foo.go --
    package main
    
    import (
    	"fmt"
    
    	"example.com/a"
    )
    
    func main() {
        fmt.Println(a.Str())
    }
    
    # matchPotentialSourceFile prunes out tests and unbuilt code.
    # Make sure that they are vendored if they are embedded files.
    cd ../embed_unbuilt
    go mod vendor
    cmp vendor/example.com/dep/unbuilt.go dep/unbuilt.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/regexp/syntax/prog.go

    	EmptyEndLine
    	EmptyBeginText
    	EmptyEndText
    	EmptyWordBoundary
    	EmptyNoWordBoundary
    )
    
    // EmptyOpContext returns the zero-width assertions
    // satisfied at the position between the runes r1 and r2.
    // Passing r1 == -1 indicates that the position is
    // at the beginning of the text.
    // Passing r2 == -1 indicates that the position is
    // at the end of the text.
    func EmptyOpContext(r1, r2 rune) EmptyOp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_e.txt

    ! stderr 'indirecttestnotfound'  # Vendor prunes test dependencies.
    
    cmp go.mod.orig go.mod
    ! exists vendor
    
    
    # 'go mod tidy' still logs the errors, but succeeds and updates go.mod.
    
    go mod tidy -e
    stderr -count=4 'cannot find module providing package'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top