Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for toMutableList (0.55 sec)

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

                        .filter { onlyNativeSubprojectsForIntelMacs(testCoverage, it.name) }
                        .map { it.name }
                val subprojectsInModelButNotInBucketJson = allSubprojectsInModel.toMutableList().apply { removeAll(allSubprojectsInBucketJson) }
    
                if (subprojectsInModelButNotInBucketJson.isEmpty()) {
                    testCoverage to buckets
                } else {
                    testCoverage to
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Sep 24 08:38:33 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/FixProjectHealthTask.kt

            dependenciesToModify.forEach { (filePath, dependencies) ->
                val file = File(filePath)
                if (!file.exists()) return@forEach
    
                val lines = file.readLines().toMutableList()
                dependencies.forEach { dependency ->
                    val dependencyRegex = Regex("""(api|implementation)(\(projects\.[a-zA-Z]+\)) \(was (api|implementation)\)""")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Mar 03 06:57:08 UTC 2025
    - 6.2K bytes
    - Viewed (1)
  3. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

          this.settings_ = Settings()
        }
    
        internal constructor(mockResponse: MockResponse) {
          this.inTunnel = mockResponse.inTunnel
          this.informationalResponses_ = mockResponse.informationalResponses.toMutableList()
          this.status = mockResponse.status
          this.headers_ = mockResponse.headers.newBuilder()
          this.trailers_ = mockResponse.trailers.newBuilder()
          this.bodyVar = mockResponse.body
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt

      }
    
      public override fun clone(): MockResponse {
        val result = super.clone() as MockResponse
        result.headersBuilder = headersBuilder.build().newBuilder()
        result.promises = promises.toMutableList()
        return result
      }
    
      @JvmName("-deprecated_getStatus")
      @Deprecated(
        message = "moved to var",
        replaceWith = ReplaceWith(expression = "status"),
        level = DeprecationLevel.ERROR,
      )
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 7.1K bytes
    - Viewed (1)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt

         *     not contain null or [Protocol.HTTP_1_0].
         */
        fun protocols(protocols: List<Protocol>) =
          apply {
            // Create a private copy of the list.
            val protocolsCopy = protocols.toMutableList()
    
            // Validate that the list has everything we require and nothing we forbid.
            require(Protocol.H2_PRIOR_KNOWLEDGE in protocolsCopy || HTTP_1_1 in protocolsCopy) {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Oct 07 21:55:03 UTC 2025
    - 51.4K bytes
    - Viewed (0)
Back to top