- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 1,737 for character (0.14 sec)
-
subprojects/core/src/main/java/org/gradle/internal/xml/SimpleMarkupWriter.java
public SimpleMarkupWriter characters(char[] characters, int start, int count) throws IOException { if (context == Context.CData) { writeCDATA(characters, start, count); } else { maybeStartText(); writeXmlEncoded(characters, start, count); } return this; } public SimpleMarkupWriter characters(CharSequence characters) throws IOException {
Registered: 2024-06-12 18:38 - Last Modified: 2021-11-02 12:15 - 12K bytes - Viewed (0) -
src/path/filepath/match.go
// term: // '*' matches any sequence of non-Separator characters // '?' matches any single non-Separator 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: 2024-05-23 01:00 - 8.7K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/CharEscaper.java
} /** * Returns the escaped form of the given character, or {@code null} if this character does not * need to be escaped. If an empty array is returned, this effectively strips the input character * from the resulting text. * * <p>If the character does not need to be escaped, this method should return {@code null}, rather * than a one-character array containing the character itself. This enables the escaping algorithm
Registered: 2024-06-12 16:38 - Last Modified: 2022-01-18 20:55 - 6.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/TablesTransformValuesTest.java
@GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public class TablesTransformValuesTest extends AbstractTableTest<Character> { private static final Function<@Nullable String, @Nullable Character> FIRST_CHARACTER = new Function<@Nullable String, @Nullable Character>() { @Override public @Nullable Character apply(@Nullable String input) { return input == null ? null : input.charAt(0); } };
Registered: 2024-06-12 16:38 - Last Modified: 2024-03-04 16:54 - 3.1K bytes - Viewed (0) -
guava/src/com/google/common/escape/CharEscaper.java
} /** * Returns the escaped form of the given character, or {@code null} if this character does not * need to be escaped. If an empty array is returned, this effectively strips the input character * from the resulting text. * * <p>If the character does not need to be escaped, this method should return {@code null}, rather * than a one-character array containing the character itself. This enables the escaping algorithm
Registered: 2024-06-12 16:38 - Last Modified: 2022-01-18 20:55 - 6.7K bytes - Viewed (0) -
staging/src/k8s.io/apiserver/pkg/cel/library/format_test.go
expectValue: types.OptionalOf(types.NewStringList(types.DefaultTypeAdapter, []string{`a DNS-1035 label must consist of lower case alphanumeric characters or '-', start with an alphabetic character, and end with an alphanumeric character (e.g. 'my-name', or 'abc-123', regex used for validation is '[a-z]([-a-z0-9]*[a-z0-9])?')`})), }, { name: "qualifiedName", expr: `format.qualifiedName().validate("contains a space")`,
Registered: 2024-06-15 01:39 - Last Modified: 2024-04-23 17:22 - 9.2K bytes - Viewed (0) -
guava/src/com/google/common/net/UrlEscapers.java
* the same. * <li>The special characters ".", "-", "*", and "_" remain the same. * <li>The space character " " is converted into a plus sign "+". * <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 "%XY", where "XY" is the two-digit, * uppercase, hexadecimal representation of the byte value. * </ul> *
Registered: 2024-06-12 16:38 - Last Modified: 2021-04-28 15:04 - 6.9K bytes - Viewed (0) -
subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlValidationTest.groovy
'foo\u203f' | _ } def "identifies illegal character"() { expect: // Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF] // /* any Unicode character, excluding the surrogate blocks, FFFE, and FFFF. */ !XmlValidation.isLegalCharacter(character) where: character | _ 0x8 | _ 0xb | _
Registered: 2024-06-12 18:38 - Last Modified: 2019-11-22 14:56 - 3.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt
* * * In queries, ' ' is encoded to '+' and '+' is encoded to "%2B". * * * Characters in `encodeSet` are percent-encoded. * * * Control characters and non-ASCII characters are percent-encoded. * * * All other characters are copied without transformation. * * @param alreadyEncoded true to leave '%' as-is; false to convert it to '%25'.
Registered: 2024-06-16 04:42 - Last Modified: 2024-01-09 12:33 - 7.3K bytes - Viewed (0) -
subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/DefaultTypeConverterTest.groovy
} def "converts scalar types to Character"() { expect: converter.convert("a" as Character, Character.class, false) == "a" converter.convert("a", Character.class, false) == "a" converter.convert(new StringBuilder("a"), Character.class, false) == "a" } def "cannot convert string that is not exactly one character long to character"() { when:
Registered: 2024-06-12 18:38 - Last Modified: 2021-04-12 07:56 - 13.3K bytes - Viewed (0)