Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ImportResults (0.31 sec)

  1. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

              write(domain).writeByte(NEWLINE)
            }
          }
        }
      }
    
      private suspend fun writeOutputFile(importResults: ImportResults) =
        withContext(Dispatchers.IO) {
          fileSystem.sink(outputFile).gzip().buffer().use { sink ->
            importResults.writeOut(sink)
          }
        }
    
      /**
       * These assertions ensure the [PublicSuffixDatabase] remains correct. The specification is
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 18 01:24:38 GMT 2024
    - 6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirSimpleNameReference.kt

            val codeFragment = KtPsiFactory(element.project).createExpressionCodeFragment(fqName.asString(), element)
            val contentElement = codeFragment.getContentElement()
            val importResults =
                when (contentElement) {
                    is KtDotQualifiedExpression -> contentElement.selectorExpression?.mainReference?.multiResolve(false)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Nov 02 21:23:43 GMT 2023
    - 5K bytes
    - Viewed (0)
Back to top