Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 355 for map (0.12 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

        private
        val taskPathReports: Map<String, List<File>>
            get() = parameters.taskPathToReports.get()
    
        private
        val rootBuildDir: File
            get() = parameters.rootBuildDir.get().asFile
    
        private
        val testPathToBinaryResultsDirs: Map<String, File>
            get() = parameters.testPathToBinaryResultsDirs.get()
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jul 28 16:19:47 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/databaseInfoMap.dfprop

            # If you use Oracle and its Synonym, specify this property.
            #; includeSynonyms=true
        }
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o variousMap: (NotRequired - Default map:{})
        #  The various settings about JDBC task mainly.
        #
        ; variousMap = map:{
            # o objectTypeTargetList: (NotRequired - Default list:{TABLE;VIEW})
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        # o filterVariablesMap: (NotRequired - Default map:{})
        #  You can specify the filter variables for DDL.
        #
        #; filterVariablesMap = map:{abc=AAA}
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o additionalUserMap: (NotRequired - Default map:{})
        #  You can set additional users.
        #  Elements of this map are as below:
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

                val scenarioObj = it as JSONObject
                val testId = scenarioObj["testId"] as String
                val groups = (scenarioObj["groups"] as JSONArray).map {
                    val groupObj = it as JSONObject
                    val testProject = groupObj["testProject"] as String
                    val coverage = (groupObj["coverage"] as JSONObject).map { entry ->
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassGraph.kt

                        entryPoints.add(classDetails)
                    }
                }
            }
    
        fun getDependencies() = classes.map { it.value.outputClassFilename to it.value.dependencies.map { it.outputClassFilename } }.toMap()
    }
    
    
    class ClassDetails(val outputClassName: String) {
        var visited: Boolean = false
        val dependencies: MutableSet<ClassDetails> = linkedSetOf()
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                firDiagnostic.c.map { coneKotlinType ->
                    firSymbolBuilder.typeBuilder.buildKtType(coneKotlinType)
                },
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.AMBIGUOUS_SUPER) { firDiagnostic ->
            AmbiguousSuperImpl(
                firDiagnostic.a.map { coneKotlinType ->
    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)
  7. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/HLDiagnosticConverter.kt

        }
    
        fun getAllConverters(conversionForCollectionValues: HLParameterConversion): Map<KClass<*>, HLParameterConversion> {
            return buildMap {
                putAll(typeMapping)
                put(
                    Map::class,
                    HLMapParameterConversion(
                        "key",
                        "value",
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Nov 06 14:41:18 GMT 2023
    - 16.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/idn/StringprepTablesReaderTest.kt

        buffer.writeUtf8(
          """
          |    180C; ; Map to nothing
          |    0041; 0061; Case map
          |    0390; 03B9 0308 0301; Case map
          |
          """.trimMargin(),
        )
    
        val mappings = buffer.readCodePointMappings()
        assertEquals(
          mapOf(
            // Map to nothing.
            0x180c to "",
            // Case map.
            'A'.code to "a",
            // Case map.
            'ΐ'.code to "\u03B9\u0308\u0301",
          ),
    Plain Text
    - Registered: Fri Mar 29 11:42:11 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

        listOf("7.3", "7.6"), // 7.3 <=version < 7.6
        listOf("7.6", "8.3"), // 7.6 <=version < 8.3
        listOf("8.3", "99.0") // 8.3 <=version < 99.0
    )
    
    typealias BuildProjectToSubprojectTestClassTimes = Map<String, Map<String, List<TestClassTime>>>
    
    interface FunctionalTestBucketProvider {
        fun createFunctionalTestsFor(stage: Stage, testCoverage: TestCoverage): List<FunctionalTest>
    }
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Jan 18 05:14:09 GMT 2024
    - 9K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

            }
    
            fun assertHasErrors(vararg errors: String) {
                assertThat("Has errors", richReport.errors.map { it.message }, CoreMatchers.equalTo(errors.toList()))
            }
    
            fun assertHasWarnings(vararg warnings: String) {
                assertThat("Has warnings", richReport.warnings.map { it.message }, CoreMatchers.equalTo(warnings.toList()))
            }
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
Back to top