Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HashSet (0.23 sec)

  1. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

            "java.util.List" to "kotlin.collections.List",
            "java.util.ArrayList" to "kotlin.collections.ArrayList",
            "java.util.Set" to "kotlin.collections.Set",
            "java.util.HashSet" to "kotlin.collections.HashSet",
            "java.util.LinkedHashSet" to "kotlin.collections.LinkedHashSet",
            "java.util.Map" to "kotlin.collections.Map",
            "java.util.Map.Entry" to "kotlin.collections.Map.Entry",
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

         * Collects all inline function calls in an [element] (usually a file) and follows each transitively.
         */
        fun analyze(element: KtElement) {
            val project = element.project
            val nextInlineFunctions = HashSet<KtDeclarationWithBody>()
            val collector = InlineFunctionsCollector(project, analyzeOnlyReifiedInlineFunctions) { declaration ->
                if (!analyzedElements.contains(declaration)) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Aug 29 23:55:31 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CertificatePinnerTest.kt

          Arrays.asList(
            CertificatePinner.Pin("example.com", certA1Sha256Pin),
            CertificatePinner.Pin("www.example.com", certA1Sha256Pin),
          )
        assertEquals(expectedPins, builder.pins)
        assertEquals(HashSet(expectedPins), certificatePinner.pins)
      }
    
      companion object {
        val certA1 =
          HeldCertificate.Builder()
            .serialNumber(100L)
            .build()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-61024`](https://youtrack.jetbrains.com/issue/KT-61024) Native: Mark the kotlin.native.CName annotation with ExperimentalNativeApi
    - [`KT-61025`](https://youtrack.jetbrains.com/issue/KT-61025) Native: Deprecate HashSet.getElement() with WARNING
    - [`KT-53791`](https://youtrack.jetbrains.com/issue/KT-53791) Publish standard library as a multiplatform artifact with Gradle metadata
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
Back to top