Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isISOControl (0.2 sec)

  1. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/internal/IsProbablyUtf8.kt

        copyTo(prefix, 0, byteCount)
        for (i in 0 until 16) {
          if (prefix.exhausted()) {
            break
          }
          val codePoint = prefix.readUtf8CodePoint()
          if (Character.isISOControl(codePoint) && !Character.isWhitespace(codePoint)) {
            return false
          }
        }
        return true
      } catch (_: EOFException) {
        return false // Truncated UTF-8 sequence.
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.4K bytes
    - Viewed (1)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationFieldValidator.java

            }
            // Iterate over unicode characters
            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)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

                int symbolSize = 0;
                int c;
                final Set<String> termCache = new HashSet<>(1000);
                try {
                    while ((c = reader.read()) != -1) {
                        if (Character.isISOControl(c) || isSpaceChar(c)) {
                            if (duplicateTermRemoved) {
                                if (alphanumSize > 0) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top