Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/CliFe10AnalysisFacade.kt

            // Simple null-check below will skip the bail-out.
            if (useSiteModule != null &&
                module.name.asString().removeSurrounding("<", ">") != useSiteModule.moduleName
            ) {
                // there is no way to properly map KtModule to ModuleDescriptor,
                // Multi-module [KtFe10AnalysisHandlerExtension]s are used only for tests,
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Jan 26 16:20:19 GMT 2024
    - 7K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketExtensions.kt

                    val name = header.trimSubstring(pos, equals)
                    val value =
                      if (equals < parameterEnd) {
                        header.trimSubstring(equals + 1, parameterEnd).removeSurrounding("\"")
                      } else {
                        null
                      }
                    pos = parameterEnd + 1
                    when {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.1K bytes
    - Viewed (0)
Back to top