Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseObject (0.2 sec)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

                )
            )
        }
    
        private
        fun buildBuckets(buildClassTimeJson: File, model: CIBuildModel): Map<TestCoverage, List<SmallSubprojectBucket>> {
            val jsonObj = JSON.parseObject(buildClassTimeJson.readText()) as JSONObject
            val buildProjectClassTimes: BuildProjectToSubprojectTestClassTimes = jsonObj.map { buildProjectToSubprojectTestClassTime ->
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 15 17:04:41 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        }
    
        private
        fun readPerformanceTestConfigurations(performanceTestsCiJson: File): List<PerformanceTestConfiguration> {
            val performanceTestsCiJsonObj = JSON.parseObject(performanceTestsCiJson.readText(StandardCharsets.UTF_8)) as JSONObject
    
            return (performanceTestsCiJsonObj["performanceTests"] as JSONArray).map {
                val scenarioObj = it as JSONObject
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 15.3K bytes
    - Viewed (0)
Back to top