Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for orEmpty (0.05 seconds)

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

            .listFiles()
            ?.filter { it.isDirectory }
            ?.map { it.resolve("tmp-extracted-resources") }
            ?.filter { it.exists() }
            .orEmpty()
    
        private
        fun TestFilesCleanupProjectState.prepareReportsForCiPublishing(executedTaskPaths: Set<String>, tmpTestFiles: Collection<File>) {
            val reports: List<File> = executedTaskPaths.asSequence()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 11:05:07 GMT 2026
    - 14.3K bytes
    - Click Count (1)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

            val cookie = parse(url, cookieStrings[i]) ?: continue
            if (cookies == null) cookies = mutableListOf()
            cookies.add(cookie)
          }
    
          return cookies?.unmodifiable().orEmpty()
        }
      }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 23.1K bytes
    - Click Count (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt

            }
    
          override fun isDefaultValue(value: X509TrustManager?): Boolean =
            !value
              ?.javaClass
              ?.name
              .orEmpty()
              .startsWith("okhttp")
        }
    
        object HostnameVerifierOverride : Override<HostnameVerifier> {
          override fun Interceptor.Chain.value(): HostnameVerifier = hostnameVerifier
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 28.8K bytes
    - Click Count (0)
Back to Top