Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 137 for listOf (0.13 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            !leftIsArray && !rightIsArray -> left == right
            else -> false
        }
    }
    
    
    internal fun List<ConstantValue<*>>.expandArrayAnnotationValue(
        containingArrayType: KotlinType,
        analysisContext: Fe10AnalysisContext,
    ): List<KaAnnotationValue> = flatMap { constantValue: ConstantValue<*> ->
        val constantType = constantValue.getType(analysisContext.resolveSession.moduleDescriptor)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

        val ephemeral_keys_supported: Boolean,
        val rating: String,
        val tls_version: String,
        val able_to_detect_n_minus_one_splitting: Boolean,
        val insecure_cipher_suites: Map<String, List<String>>,
        val given_cipher_suites: List<String>?,
      )
    
      @Test
      @Disabled
      fun testSSLFeatures() {
        assumeNetwork()
    
        val request = Request.Builder().url("https://www.howsmyssl.com/a/check").build()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/firAnnotationUtils.kt

            mapAnnotationParameters(annotations[index]),
            builder
        )
    }
    
    private inline fun List<FirAnnotation>.mapIndexedToAnnotationApplication(
        useSiteSession: FirSession,
        classId: ClassId,
        transformer: (index: Int, annotation: FirAnnotation) -> KaAnnotation?,
    ): List<KaAnnotation> = mapIndexedNotNull { index, annotation ->
        if (annotation.toAnnotationClassId(useSiteSession) != classId) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        }
    
        assertThat(buffer.readByteString()).isEqualTo("300a1505536d6974680101ff".decodeHex())
      }
    
      @Test fun `sequence of`() {
        val bytes = "3009020107020108020109".decodeHex()
        val sequenceOf = listOf(7L, 8L, 9L)
        val adapter = Adapters.INTEGER_AS_LONG.asSequenceOf()
        assertThat(adapter.fromDer(bytes)).isEqualTo(sequenceOf)
        assertThat(adapter.toDer(sequenceOf)).isEqualTo(bytes)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

        // Find all references here https://developer.android.com/studio/archive
        // Update verification-metadata.xml
        const val performanceTestAndroidStudioVersion = "2023.3.1.18"
        val performanceTestAndroidStudioJvmArgs = listOf("-Xms256m", "-Xmx4096m")
    }
    
    
    @Suppress("unused")
    class PerformanceTestPlugin : Plugin<Project> {
        override fun apply(project: Project): Unit = project.run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                return symbolImplementationPackageNames.none { qualifiedName.startsWith("$it.") }
            }
    
            val valueClass = value::class
            val allClasses = listOf(valueClass) + valueClass.allSuperclasses
    
            val matchingClasses = allClasses.filter { it.isFrontendIndependent() }
            val matchingClassSet = matchingClasses.toSet()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

            assertThat(
                "Only the generated Gradle Plugin wrapper is not internal",
                generatedAccessors.filterNot { it.visibility == Visibilities.Internal },
                equalTo(
                    listOf(
                        Declaration(
                            "",
                            "JavaProjectPlugin",
                            Visibilities.Public
                        )
                    )
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

            val binDir = newFolder("bin")
            compileToDirectory(
                binDir,
                KotlinCompilerOptions(),
                "test",
                listOf(sourceFile),
                loggerFor<KotlinApiClassExtractorTest>(),
                emptyList()
            )
    
            return ClassFixture(scriptBody, binDir.toPath().resolve(scriptClass).toFile().readBytes())
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

                @Suppress("unchecked_cast")
                val freeCompilerArgs: List<String> = getProperty("freeCompilerArgs") as List<String>
                setProperty("freeCompilerArgs", freeCompilerArgs + scriptTemplatesArgs + resolverEnvironment.mappedToScriptResolverEnvironmentArg.get())
            }
        }
    }
    
    
    private
    val scriptTemplatesArgs
        get() = listOf("-script-templates", scriptTemplates)
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginIntegrationTest.kt

            compileKotlin()
            val generated = file("build/generated-sources/kotlin-dsl-plugins/kotlin").walkTopDown().filter { it.isFile }.map { it.name }
            assertThat(generated.toList(), equalTo(listOf("CorrectPlugin.kt")))
        }
    
        @Issue("https://github.com/gradle/gradle/issues/16154")
        @Test
        fun `file annotations and package statement in precompiled script plugin handled correctly`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top