Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 247 for appengine (0.2 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTestUtil.kt

                            appendLine()
                            visitValue(value, indent + 1)
                        }
                        if (documentNode.content.isNotEmpty()) {
                            appendLine()
                            documentNode.content.forEach { visitDocumentNode(it, indent + 1) }
                        } else {
                            appendLine()
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/TestAnnotationRenderer.kt

            analysisSession: KaSession,
            annotations: KaAnnotationList,
            currentMetaAnnotations: Set<ClassId>?,
            indent: Int
        ) {
            appendLine("annotations: [".indented(indent))
            for (annotation in annotations) {
                appendLine(DebugSymbolRenderer().renderAnnotationApplication(analysisSession, annotation).indented(indent = indent + 2))
                if (currentMetaAnnotations != null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolRestoreFromDifferentModuleTest.kt

            }
    
            val actualDebug = prettyPrint {
                appendLine("Inital from ${declarationModule.moduleDescription}:")
                appendLine(debugRendered)
                appendLine()
                appendLine("Restored in ${restoreAtModule.moduleDescription}:")
                appendLine(debugRenderedRestored ?: NOT_RESTORED)
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractTypeTest.kt

                val type = getType(analysisSession, mainFile, mainModule, testServices)
    
                buildString {
                    appendLine(DebugSymbolRenderer(renderTypeByProperties = true).renderType(analysisSession, type))
    
                    appendLine()
                    appendLine("Rendered type:")
                    appendLine(type.render(position = Variance.INVARIANT))
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractTypeScopeTest.kt

                    appendLine("Expression: ${expression.text}")
                    appendLine("${KaType::class.simpleName}: ${type.render(position = Variance.INVARIANT)}")
                    appendLine()
                    appendLine("${KaTypeScope::class.simpleName}:")
                    appendLine(typeScope?.let { renderForTests(it) } ?: "NO_SCOPE")
                    appendLine()
    
                    appendLine("Declaration Scope:")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportWriter.kt

            writer.run {
                appendLine("""<script type="text/javascript">""")
                appendLine("function configurationCacheProblems() { return (")
                appendLine("// begin-report-data")
            }
        }
    
        private
        fun endReportData() {
            writer.run {
                appendLine()
                appendLine("// end-report-data")
                appendLine(");}")
                appendLine("</script>")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultCachingStateFactory.java

            logger.warn("Appending implementation to build cache key: {}",
                beforeExecutionState.getImplementation());
            beforeExecutionState.getImplementation().appendToHasher(cacheKeyHasher);
    
            beforeExecutionState.getAdditionalImplementations().forEach(additionalImplementation -> {
                logger.warn("Appending additional implementation to build cache key: {}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractMultiModuleSymbolByPsiTest.kt

                        debugPrinter.appendLine(debugRenderer.render(analysisSession, symbol))
                        debugPrinter.appendLine()
    
                        prettyPrinter.withIndents(indentCount = declaration.parentsOfType<KtDeclaration>(withSelf = false).count()) {
                            prettyPrinter.appendLine(symbol.render(KaDeclarationRendererForDebug.WITH_QUALIFIED_NAMES))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/ShorteningResultsRenderer.kt

        fun StringBuilder.renderShorteningResults(shortening: ShortenCommand) {
            if (shortening.isEmpty) {
                appendLine("EMPTY_SHORTENINGS")
                return
            }
    
            shortening.listOfTypeToShortenInfo.forEach { (userType, shortenedRef) ->
                userType.element?.text?.let {
                    appendLine("[type] $it${shortenedRef?.let { ref -> " -> $ref" } ?: ""}")
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 20 20:18:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSymbolSubstitutionTest.kt

                prettyPrint {
                    appendLine("${KtDeclaration::class.simpleName}: ${declaration::class.simpleName}")
    
                    appendLine("Symbol:")
                    appendLine(symbol.render(KaDeclarationRendererForDebug.WITH_QUALIFIED_NAMES))
    
                    appendLine()
    
                    appendLine("Signature:")
                    appendLine(stringRepresentation(signature))
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top