Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,162 for Fun (0.03 sec)

  1. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

      fun hostnameMultipleCharacterMapping() {
        // Map the single character telephone symbol (℡) to the string "tel".
        assertThat(parse("http://\u2121").host).isEqualTo("tel")
      }
    
      @Test
      fun hostnameMappingLastMappedCodePoint() {
        assertThat(parse("http://\uD87E\uDE1D").host).isEqualTo("xn--pu5l")
      }
    
      // The java.net.IDN implementation doesn't ignore characters that it should.
      @Ignore
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/defaultCodeResolver.kt

        override fun doResolveExpression(context: AnalysisContext, expr: Expr): ObjectOrigin? =
            expressionResolver.doResolveExpression(context, expr)
    
        override fun analyzeStatementsInProgramOrder(context: AnalysisContext, elements: List<DataStatement>) {
            codeAnalyzer.analyzeStatementsInProgramOrder(context, elements)
        }
    
        override fun doResolvePropertyAccessToObjectOrigin(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

    internal
    fun LighterASTNode.sourceData(sourceIdentifier: SourceIdentifier, sourceCode: String, sourceOffset: Int) =
        LightTreeSourceData(sourceIdentifier, sourceCode, sourceOffset, this.range())
    
    
    private
    fun LighterASTNode.print(indent: String) {
        println("$indent$tokenType (${range()}): ${content()}")
    }
    
    
    internal
    fun LighterASTNode.range() = startOffset.until(endOffset)
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValue.kt

         * Constant value represented as Kotlin code. E.g: `1`, `2f, `3u` `null`, `"str"`
         */
        public abstract fun renderAsKotlinConstant(): String
    
        public class KaNullConstantValue(override val sourcePsi: KtElement?) : KaConstantValue(ConstantValueKind.Null) {
            override val value: Nothing? get() = null
            override fun renderAsKotlinConstant(): String = "null"
        }
    
        public class KaBooleanConstantValue(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationFromMemberScope/subsitutionOverride.txt

    fun <S> foo1(t: Int): Int fromClass Y
      S from /Y.foo1
      t: Int from /Y.foo1
    
    fun <Q> foo2(t: Int) fromClass Y
      Q from /Y.foo2
      t: Int from /Y.foo2
    
    fun <U> foo3() fromClass X
      U from /X.foo3
    
    fun equals(other: Any?): Boolean fromClass kotlin/Any
      other: Any? from kotlin/Any.equals
    
    fun hashCode(): Int fromClass kotlin/Any
    
    fun toString(): String fromClass kotlin/Any
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Nov 22 17:25:30 UTC 2022
    - 400 bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      }
    
      @Test
      fun serverClosesSocket() {
        testServerClosesOutput(DisconnectAtEnd)
      }
    
      @Test
      fun serverShutdownInput() {
        testServerClosesOutput(ShutdownInputAtEnd)
      }
    
      @Test
      fun serverShutdownOutput() {
        testServerClosesOutput(ShutdownOutputAtEnd)
      }
    
      @Test
      fun invalidHost() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptClassPathProvider.kt

        }
    
        fun compilationClassPathOf(scope: ClassLoaderScope): ClassPath =
            cachedScopeCompilationClassPath.computeIfAbsent(scope, ::computeCompilationClassPath)
    
        private
        fun computeCompilationClassPath(scope: ClassLoaderScope): ClassPath {
            return gradleKotlinDsl + exportClassPathFromHierarchyOf(scope)
        }
    
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/HLParameterConversion.kt

    sealed class HLParameterConversion {
        abstract fun convertExpression(expression: String, context: ConversionContext): String
        abstract fun convertType(type: KType): KType
        open val importsToAdd: List<String> get() = emptyList()
    }
    
    object HLIdParameterConversion : HLParameterConversion() {
        override fun convertExpression(expression: String, context: ConversionContext) = expression
        override fun convertType(type: KType): KType = type
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 15 09:32:47 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

                    classBody()
                }
            )
        }
    
        private
        fun writeFile(relativePath: String, bytes: ByteArray) {
            outputFile(relativePath).writeBytes(bytes)
        }
    
        private
        fun outputFile(relativePath: String) =
            outputDir.resolve(relativePath)
    
        private
        fun compileStage1(
            source: ProgramSource,
            scriptDefinition: ScriptDefinition,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/FolderBasedTest.kt

            get() = tempFolder.testDirectory
    
        fun withFolders(folders: FoldersDslExpression) =
            root.withFolders(folders)
    
        fun folder(path: String): File =
            existing(path).apply {
                assert(isDirectory)
            }
    
        fun file(path: String): File =
            existing(path).apply {
                assert(isFile)
            }
    
        private
        fun existing(path: String): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top