Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unicodeChar (1.76 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationFieldValidator.java

            int offset = 0;
            while (offset < value.length()) {
                final int unicodeChar = value.codePointAt(offset);
                if (Character.isISOControl(unicodeChar)) {
                    throw failure(String.format("%s cannot contain ISO control character '\\u%04x'.", name, unicodeChar));
                }
                if ('\\' == unicodeChar || ('/' == unicodeChar && !allowSlash)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top