Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 117 for appengine (0.23 sec)

  1. src/time/format.go

    	buf = append(buf, ", "...)
    	buf = appendInt(buf, hour, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, minute, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, second, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, t.Nanosecond(), 0)
    	buf = append(buf, ", "...)
    	switch loc := t.Location(); loc {
    	case UTC, nil:
    		buf = append(buf, "time.UTC"...)
    	case Local:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/typeCreator/AbstractTypeParameterTypeTest.kt

                val symbol = expressionAtCaret.getTypeParameterSymbol()
                val ktType = buildTypeParameterType(symbol)
                buildString {
                    appendLine("${KtTypeParameter::class.simpleName}: ${expressionAtCaret.text}")
                    appendLine("${KaType::class.simpleName}: ${ktType.render(position = Variance.INVARIANT)}")
                }
            }
    
            testServices.assertions.assertEqualsToTestDataFileSibling(actual)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/symbolDeclarationOverridesProvider/AbstractOverriddenDeclarationProviderTest.kt

                    buildString {
                        appendLine("ALL:")
                        allOverriddenSymbols.forEach { appendLine("  $it") }
                        appendLine("DIRECT:")
                        directlyOverriddenSymbols.forEach { appendLine("  $it") }
                    }
                }
            }
            testServices.assertions.assertEqualsToTestDataFileSibling(actual)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/typeProvider/AbstractTypeReferenceTest.kt

            val actual = analyseForTest(expressionAtCaret) {
                val ktType = expressionAtCaret.getKtType()
                buildString {
                    appendLine("${KtTypeReference::class.simpleName}: ${expressionAtCaret.text}")
                    appendLine("${KaType::class.simpleName}: ${ktType.render(position = Variance.INVARIANT)}")
                }
            }
    
            testServices.assertions.assertEqualsToTestDataFileSibling(actual)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTest.kt

                        }
    
                        is DeclarativeDocument.DocumentNode.PropertyNode -> appendLine("property(${node.name}, ${valueToString(node.value)})" + maybeSourceData(node))
                        is DeclarativeDocument.DocumentNode.ErrorNode -> appendLine("error(${node.errors.joinToString { errorString(it) }}" + maybeSourceData(node))
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/klibSourceFileProvider/AbstractGetKlibSourceFileNameTest.kt

                ?: fail("Expected main module '${mainModule.ktModule}' to be '${KtLibraryModule::class.simpleName}'")
    
            val actual = StringBuilder()
            actual.appendLine("klib declarations:")
    
            analyze(libraryModule) {
                val binaryRoot = libraryModule.getBinaryRoots().singleOrNull() ?: fail("Expected single binary root")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/expressionTypeProvider/AbstractHLExpressionTypeTest.kt

                    }
                    ktType?.render(renderer, position = Variance.INVARIANT)
                }
            }
            val actual = buildString {
                appendLine("expression: ${expression.text}")
                appendLine("type: $type")
            }
            testServices.assertions.assertEqualsToTestDataFileSibling(actual)
        }
    
        override fun configureTest(builder: TestConfigurationBuilder) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/diagnosticProvider/AbstractElementDiagnosticsTest.kt

                            append(diagnostic.factoryName).append(": ")
                            diagnostic.textRanges.joinTo(this)
                            appendLine()
                        }
                    } else {
                        appendLine("No diagnostics found")
                    }
                }
    
                testServices.assertions.assertEqualsToTestDataFileSibling(actualText)
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/substitutorProvider/AbstractCreateInheritanceTypeSubstitutorTest.kt

                val substitutor = createInheritanceTypeSubstitutor(baseClass.getClassOrObjectSymbol()!!, superClassSymbol)
                prettyPrint {
                    appendLine("Substitutor: ${stringRepresentation(substitutor)}")
                    if (substitutor != null) {
                        val functions = superClassSymbol.getDeclaredMemberScope().getAllSymbols()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/psiTypeProvider/AbstractAnalysisApiPsiTypeProviderTest.kt

                    analyze(declaration) {
                        val ktType = declaration.getReturnKaType()
                        appendLine("${KaType::class.simpleName}: ${AnalysisApiPsiTypeProviderTestUtils.render(analysisSession, ktType)}")
                        val psiType = ktType.asPsiType(psiContext, allowErrorTypes = false)
                        appendLine("${PsiType::class.simpleName}: ${AnalysisApiPsiTypeProviderTestUtils.render(psiType)}")
                    }
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top