- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 1,737 for character (0.13 sec)
-
android/guava/src/com/google/common/net/PercentEscaper.java
* * <ul> * <li>All specified safe characters remain unchanged. * <li>If {@code plusForSpace} was specified, the space character " " is converted into a plus * sign {@code "+"}. * <li>All other characters are converted into one or more bytes using UTF-8 encoding and each * byte is then represented by the 3-character string "%XX", where "XX" is the two-digit,
Registered: 2024-06-12 16:38 - Last Modified: 2022-10-10 19:45 - 8.7K bytes - Viewed (0) -
guava/src/com/google/common/net/PercentEscaper.java
* * <ul> * <li>All specified safe characters remain unchanged. * <li>If {@code plusForSpace} was specified, the space character " " is converted into a plus * sign {@code "+"}. * <li>All other characters are converted into one or more bytes using UTF-8 encoding and each * byte is then represented by the 3-character string "%XX", where "XX" is the two-digit,
Registered: 2024-06-12 16:38 - Last Modified: 2022-10-10 19:45 - 8.7K bytes - Viewed (0) -
src/path/match.go
// { term } // term: // '*' matches any sequence of non-/ characters // '?' matches any single non-/ character // '[' [ '^' ] { character-range } ']' // character class (must be non-empty) // c matches character c (c != '*', '?', '\\', '[') // '\\' c matches character c // // character-range: // c matches character c (c != '\\', '-', ']') // '\\' c matches character c
Registered: 2024-06-12 16:32 - Last Modified: 2023-11-23 17:33 - 5.3K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/ArrayBasedCharEscaper.java
// The first character in the safe range. private final char safeMin; // The last character in the safe range. private final char safeMax; /** * Creates a new ArrayBasedCharEscaper instance with the given replacement map and specified safe * range. If {@code safeMax < safeMin} then no characters are considered safe. *
Registered: 2024-06-12 16:38 - Last Modified: 2022-01-18 20:55 - 6.3K bytes - Viewed (0) -
guava/src/com/google/common/xml/XmlEscapers.java
// which means they are treated as pairs of safe characters). builder.setSafeRange(Character.MIN_VALUE, '\uFFFD'); // Unsafe characters are replaced with the Unicode replacement character. builder.setUnsafeReplacement("\uFFFD"); /* * Except for \n, \t, and \r, all ASCII control characters are replaced with the Unicode * replacement character. *
Registered: 2024-06-12 16:38 - Last Modified: 2022-01-18 20:55 - 6.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestCharacterListGenerator.java
Character[] array = new Character[elements.length]; int i = 0; for (Object e : elements) { array[i++] = (Character) e; } return create(array); } /** * Creates a new collection containing the given elements; implement this method instead of {@link * #create(Object...)}. */ protected abstract List<Character> create(Character[] elements); @Override
Registered: 2024-06-12 16:38 - Last Modified: 2024-02-21 16:49 - 1.8K bytes - Viewed (0) -
src/strconv/quote.go
} // UnquoteChar decodes the first character or byte in the escaped string // or character literal represented by the string s. // It returns four values: // // 1. value, the decoded Unicode code point or byte value; // 2. multibyte, a boolean indicating whether the decoded character requires a multibyte UTF-8 representation; // 3. tail, the remainder of the string after the character; and
Registered: 2024-06-12 16:32 - Last Modified: 2024-04-04 14:21 - 16.5K bytes - Viewed (0) -
test/fixedbugs/issue4405.go
Registered: 2024-06-12 16:32 - Last Modified: 2016-05-02 13:43 - 413 bytes - Viewed (0) -
test/fixedbugs/issue15611.go
// ERROR "newline in character literal|newline in rune literal" // ERROR "invalid character literal \(missing closing '\)|rune literal not terminated" const ( _ = '' // ERROR "empty character literal or unescaped ' in character literal|empty rune literal" _ = 'f' _ = 'foo' // ERROR "invalid character literal \(more than one character\)|more than one character in rune literal" //line issue15611.go:11 _ = '
Registered: 2024-06-12 16:32 - Last Modified: 2020-03-05 00:40 - 685 bytes - Viewed (0) -
guava/src/com/google/common/base/Ascii.java
/** * Substitute: A character that may be substituted for a character which is determined to be * invalid or in error. * * @since 8.0 */ public static final byte SUB = 26; /** * Escape: A control character intended to provide code extension (supplementary characters) in * general information interchange. The Escape character itself is a prefix affecting the
Registered: 2024-06-12 16:38 - Last Modified: 2021-07-19 15:43 - 21.6K bytes - Viewed (0)