Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parallelizationMethod (0.19 sec)

  1. .teamcity/test-buckets.json

    [
    	{
    		"buckets":[
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"dependency-management"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"configuration-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"tooling-api"
    				]
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon May 06 14:29:38 GMT 2024
    - 49.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

        val buckets: List<FunctionalTestBucket>
    )
    
    data class FunctionalTestBucket(
        val subprojects: List<String>,
        val parallelizationMethod: ParallelizationMethod
    ) {
        constructor(jsonObject: JSONObject) : this(
            jsonObject.getJSONArray("subprojects").map { it.toString() },
            ParallelizationMethod.fromJson(jsonObject)
        )
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Feb 15 17:04:41 GMT 2024
    - 8.5K bytes
    - Viewed (0)
Back to top