Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for character (0.2 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.INCORRECT_CHARACTER_LITERAL) { firDiagnostic ->
            IncorrectCharacterLiteralImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.EMPTY_CHARACTER_LITERAL) { firDiagnostic ->
            EmptyCharacterLiteralImpl(
                firDiagnostic as KtPsiDiagnostic,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  2. okhttp-android/src/main/baseline-prof.txt

    HSPLokio/Path$Companion;->get(Ljava/lang/String;Z)Lokio/Path;
    HSPLokio/Path;-><clinit>()V
    HSPLokio/Path;-><init>(Lokio/ByteString;)V
    HSPLokio/Path;->resolve(Ljava/lang/String;)Lokio/Path;
    HSPLokio/Path;->volumeLetter()Ljava/lang/Character;
    HSPLokio/RealBufferedSink;-><init>(Lokio/Sink;)V
    HSPLokio/RealBufferedSink;->close()V
    HSPLokio/RealBufferedSink;->emitCompleteSegments()Lokio/BufferedSink;
    HSPLokio/RealBufferedSink;->flush()V
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    till you come to the end:  then stop.'
    
      These were the verses the White Rabbit read:--
    
            `They told me you had been to her,
              And mentioned me to him:
            She gave me a good character,
              But said I could not swim.
    
            He sent them word I had not gone
              (We know it to be true):
            If she should push the matter on,
              What would become of you?
    
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val message: String
        }
    
        interface DangerousCharacters : KtFirDiagnostic<KtNamedDeclaration> {
            override val diagnosticClass get() = DangerousCharacters::class
            val characters: String
        }
    
        interface EqualityNotApplicable : KtFirDiagnostic<KtBinaryExpression> {
            override val diagnosticClass get() = EqualityNotApplicable::class
            val operator: String
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 171.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KtFirDiagnostic.InvalidCharacters
    
    internal class DangerousCharactersImpl(
        override val characters: String,
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<KtNamedDeclaration>(firDiagnostic, token), KtFirDiagnostic.DangerousCharacters
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 225.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    till you come to the end:  then stop.'
    
      These were the verses the White Rabbit read:--
    
            `They told me you had been to her,
              And mentioned me to him:
            She gave me a good character,
              But said I could not swim.
    
            He sent them word I had not gone
              (We know it to be true):
            If she should push the matter on,
              What would become of you?
    
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertThat(URLConnection.getDefaultRequestProperty("X-setDefaultRequestProperty")).isNull()
      }
    
      /**
       * Reads `count` characters from the stream. If the stream is exhausted before `count`
       * characters can be read, the remaining characters are returned and the stream is closed.
       */
      private fun readAscii(
        inputStream: InputStream,
        count: Int,
      ): String {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

        executeSynchronously(Request(server.url("/")))
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1)
      }
    
      /** We forbid non-ASCII characters in outgoing request headers, but accept UTF-8.  */
      @Test
      fun responseHeaderParsingIsLenient() {
        val headersBuilder = Headers.Builder()
        headersBuilder.add("Content-Length", "0")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Added a alpha feature, behind the `RelaxedEnvironmentVariableValidation` feature gate.
      When that gate is enabled, Kubernetes allows almost all printable ASCII characters to be used in the names
      of environment variables for containers in Pods. ([#123385](https://github.com/kubernetes/kubernetes/pull/123385), [@HirazawaUi](https://github.com/HirazawaUi))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Modified influxdb petset to provision persistent  volume. ([#28840](https://github.com/kubernetes/kubernetes/pull/28840), [@jszczepkowski](https://github.com/jszczepkowski))
    * Allow service names up to 63 characters (RFC 1035) ([#29523](https://github.com/kubernetes/kubernetes/pull/29523), [@fraenkel](https://github.com/fraenkel))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
Back to top