Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 219 for rune1 (0.09 sec)

  1. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    func (e labelError) Error() string {
    	return fmt.Sprintf("idna: invalid label %q", e.label)
    }
    
    type runeError rune
    
    func (e runeError) code() string { return "P1" }
    func (e runeError) Error() string {
    	return fmt.Sprintf("idna: disallowed rune %U", e)
    }
    
    // process implements the algorithm described in section 4 of UTS #46,
    // see https://www.unicode.org/reports/tr46.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            def node2 = node("a", Long)
            def rule1 = rule(Long, ModelNode.State.Finalized)
            def rule2 = rule(Long, ModelNode.State.Finalized)
    
            when:
            bindings.add(rule1)
            addNode(node1)
            bindings.add(rule2)
    
            then:
            bindings.getRulesWithSubject(nodeAtState("a", ModelNode.State.Finalized)) as List == [rule1, rule2]
            rule1.subjectBinding.boundTo == node1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    		}
    		in.readRune()
    	}
    	in.endToken(_IDENT)
    }
    
    // isIdent reports whether c is an identifier rune.
    // We treat most printable runes as identifier runes, except for a handful of
    // ASCII punctuation characters.
    func isIdent(c int) bool {
    	switch r := rune(c); r {
    	case ' ', '(', ')', '[', ']', '{', '}', ',':
    		return false
    	default:
    		return !unicode.IsSpace(r) && unicode.IsPrint(r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	return dstL.n, srcL.p, err
    }
    
    // Deprecated: Use runes.Remove instead.
    func RemoveFunc(f func(r rune) bool) Transformer {
    	return removeF(f)
    }
    
    type removeF func(r rune) bool
    
    func (removeF) Reset() {}
    
    // Transform implements the Transformer interface.
    func (t removeF) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	for r, sz := rune(0), 0; len(src) > 0; src = src[sz:] {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. src/text/scanner/scanner.go

    		}
    	}
    	return
    }
    
    func (s *Scanner) scanNumber(ch rune, seenDot bool) (rune, rune) {
    	base := 10         // number base
    	prefix := rune(0)  // one of 0 (decimal), '0' (0-octal), 'x', 'o', or 'b'
    	digsep := 0        // bit 0: digit present, bit 1: '_' present
    	invalid := rune(0) // invalid digit in literal, or 0
    
    	// integer part
    	var tok rune
    	var ds int
    	if !seenDot {
    		tok = Int
    		if ch == '0' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/fmt/scan_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if n != 3 {
    		t.Fatalf("expected 3 items consumed, got %d", n)
    	}
    	if a.rune != '1' || b.rune != '2' || c.rune != '➂' {
    		t.Errorf("bad scan rune: %q %q %q should be '1' '2' '➂'", a.rune, b.rune, c.rune)
    	}
    	if a.size != 1 || b.size != 1 || c.size != 3 {
    		t.Errorf("bad scan size: %q %q %q should be 1 1 3", a.size, b.size, c.size)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner.go

    			panic("imperfect hash")
    		}
    		keywordMap[h] = tok
    	}
    }
    
    func lower(ch rune) rune     { return ('a' - 'A') | ch } // returns lower-case ch iff ch is ASCII letter
    func isLetter(ch rune) bool  { return 'a' <= lower(ch) && lower(ch) <= 'z' || ch == '_' }
    func isDecimal(ch rune) bool { return '0' <= ch && ch <= '9' }
    func isHex(ch rune) bool     { return '0' <= ch && ch <= '9' || 'a' <= lower(ch) && lower(ch) <= 'f' }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  8. src/internal/fuzz/encoding.go

    			} else {
    				fmt.Fprintf(b, "%T(%v)\n", t, t)
    			}
    		case string:
    			fmt.Fprintf(b, "string(%q)\n", t)
    		case rune: // int32
    			// Although rune and int32 are represented by the same type, only a subset
    			// of valid int32 values can be expressed as rune literals. Notably,
    			// negative numbers, surrogate halves, and values above unicode.MaxRune
    			// have no quoted representation.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/transform/transform.go

    	return dstL.n, srcL.p, err
    }
    
    // Deprecated: Use runes.Remove instead.
    func RemoveFunc(f func(r rune) bool) Transformer {
    	return removeF(f)
    }
    
    type removeF func(r rune) bool
    
    func (removeF) Reset() {}
    
    // Transform implements the Transformer interface.
    func (t removeF) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	for r, sz := rune(0), 0; len(src) > 0; src = src[sz:] {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  10. src/strings/example_test.go

    func ExampleContainsFunc() {
    	f := func(r rune) bool {
    		return r == 'a' || r == 'e' || r == 'i' || r == 'o' || r == 'u'
    	}
    	fmt.Println(strings.ContainsFunc("hello", f))
    	fmt.Println(strings.ContainsFunc("rhythms", f))
    	// Output:
    	// true
    	// false
    }
    
    func ExampleCount() {
    	fmt.Println(strings.Count("cheese", "e"))
    	fmt.Println(strings.Count("five", "")) // before & after each rune
    	// Output:
    	// 3
    	// 5
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top