Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 247 for appengine (0.25 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

                appendLine()
                appendSummaryHeader(cacheActionText, problemCount)
                appendLine()
                Ordering.from(consoleComparator()).leastOf(uniqueProblems, maxConsoleProblems).forEach { problem ->
                    append("- ")
                    append(problem.userCodeLocation.capitalized())
                    append(": ")
                    appendLine(problem.message)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

                    is StageFailure.NoSchemaAvailable -> appendLine("No associated schema for ${stageFailure.scriptContext}")
                    is StageFailure.AssignmentErrors -> {
                        appendLine("Failures in assignments:".indent(1))
                        stageFailure.usages.forEach { unassigned ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/expressionInfoProvider/AbstractIsUsedAsExpressionTest.kt

                    it
                }
            }
            val actual = StringBuilder()
    
            analyseForTest(expression) {
                actual.appendLine("expression: $expression")
                actual.appendLine("text: ${expression.text}")
                actual.appendLine("isUsedAsExpression: ${expression.isUsedAsExpression()}")
            }
    
            testServices.assertions.assertEqualsToTestDataFileSibling(actual.toString())
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/smartCastProvider/AbstractHLSmartCastInfoTest.kt

                analyseForTest(expression) {
                    val smartCastInfo = expression.getSmartCastInfo()
                    buildString {
                        appendLine("expression: ${expression.text}")
                        appendLine("isStable: ${smartCastInfo?.isStable}")
                        appendLine("smartCastType: ${smartCastInfo?.smartCastType?.render(position = Variance.INVARIANT)}")
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

                with(printer) {
                    appendLine("implicit receivers:")
    
                    withIndent {
                        for (implicitReceiver in scopeContext.implicitReceivers) {
                            val type = implicitReceiver.type
                            appendLine("type: ${renderType(type, printPretty)}")
                            append("owner symbol: ").appendLine(implicitReceiver.ownerSymbol::class.simpleName)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractAnalysisApiSubstitutorsTest.kt

                prettyPrint {
                    appendLine("PSI type: ${declaration.typeReference?.text}")
                    appendLine("${KaType::class.simpleName}: ${type.render(position = Variance.INVARIANT)}")
                    appendLine("substitutor.substitute: ${substituted.render(position = Variance.INVARIANT)}")
                    appendLine("substitutor.substituteOrNull: ${substitutedOrNull?.render(position = Variance.INVARIANT)}")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/AbstractAnalysisApiAnnotationsOnTypesTest.kt

                buildString {
                    appendLine("${KtTypeReference::class.simpleName}: ${ktTypeReference.text}")
                    appendLine("annotations: [")
                    for (annotation in annotations) {
                        appendLine(DebugSymbolRenderer().renderAnnotationApplication(analysisSession, annotation).indented(indent = 2))
                    }
                    appendLine("]")
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            withIndent {
                appendLine()
                renderProperty(KaCallableSymbol::callableId, printer, renderSymbolsFully = false, symbol)
                if (symbol is KaNamedSymbol) {
                    appendLine()
                    renderProperty(KaNamedSymbol::name, printer, renderSymbolsFully = false, symbol)
                }
                appendLine()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSymbolAsSignatureTest.kt

                prettyPrint {
                    appendLine("${KtDeclaration::class.simpleName}: ${declaration::class.simpleName}")
    
                    appendLine("Symbol:")
                    appendLine(renderedSymbol)
    
                    appendLine()
    
                    appendLine("Signature:")
                    appendLine(renderedSignature)
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolveExtensionInfoProvider/AbstractResolveExtensionInfoProviderTest.kt

            appendLine("PSI: ${ktElement?.getDescription()} [from ${containingVirtualFile?.name}]")
            if (ktElement == null || containingVirtualFile == null) {
                return@prettyPrint
            }
    
            withIndent {
                val isResolveExtensionFile = containingVirtualFile.isResolveExtensionFile
                appendLine("From resolve extension: $isResolveExtensionFile")
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top