Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 124 for appengine (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/typeProvider/AbstractAnalysisApiGetSuperTypesTest.kt

                        fun List<KaType>.print(name: String) {
                            appendLine(name)
                            for (type in this) {
                                appendLine(type.render(KaTypeRendererForDebug.WITH_QUALIFIED_NAMES, position = Variance.INVARIANT))
                            }
                            appendLine()
                        }
                        directSuperTypes.print("[direct super types]")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/time/format_rfc3339.go

    	year, month, day, _ := absDate(abs, true)
    	b = appendInt(b, year, 4)
    	b = append(b, '-')
    	b = appendInt(b, int(month), 2)
    	b = append(b, '-')
    	b = appendInt(b, day, 2)
    
    	b = append(b, 'T')
    
    	// Format time.
    	hour, min, sec := absClock(abs)
    	b = appendInt(b, hour, 2)
    	b = append(b, ':')
    	b = appendInt(b, min, 2)
    	b = append(b, ':')
    	b = appendInt(b, sec, 2)
    
    	if nanos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 19:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/diagnosticProvider/AbstractCollectDiagnosticsTest.kt

                        appendLine("$indentString  text ranges: $textRanges")
                        appendLine("$indentString  PSI: ${psi::class.simpleName} at ${psi.textRange.asLineColumnRange()}")
                    }
                    appendLine("Diagnostics from elements:")
                    for ((element, diagnostic) in diagnosticsFromElements) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compileTimeConstantProvider/AbstractCompileTimeConstantEvaluatorTest.kt

                    expression.evaluate()
                }
            }
            val actual = buildString {
                appendLine("expression: ${expression.text}")
                appendLine("constant: ${constantValue?.renderAsKotlinConstant() ?: "NOT_EVALUATED"}")
                appendLine("constantValueKind: ${constantValue?.constantValueKind ?: "NOT_EVALUATED"}")
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/strconv/itoa_test.go

    		s := FormatInt(test.in, test.base)
    		if s != test.out {
    			t.Errorf("FormatInt(%v, %v) = %v want %v",
    				test.in, test.base, s, test.out)
    		}
    		x := AppendInt([]byte("abc"), test.in, test.base)
    		if string(x) != "abc"+test.out {
    			t.Errorf("AppendInt(%q, %v, %v) = %q want %v",
    				"abc", test.in, test.base, x, test.out)
    		}
    
    		if test.in >= 0 {
    			s := FormatUint(uint64(test.in), test.base)
    			if s != test.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:09:39 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  9. src/log/slog/internal/benchmarks/handlers.go

    		buf.WriteString(v.String())
    	case slog.KindInt64:
    		*buf = strconv.AppendInt(*buf, v.Int64(), 10)
    	case slog.KindUint64:
    		*buf = strconv.AppendUint(*buf, v.Uint64(), 10)
    	case slog.KindFloat64:
    		*buf = strconv.AppendFloat(*buf, v.Float64(), 'g', -1, 64)
    	case slog.KindBool:
    		*buf = strconv.AppendBool(*buf, v.Bool())
    	case slog.KindDuration:
    		*buf = strconv.AppendInt(*buf, v.Duration().Nanoseconds(), 10)
    	case slog.KindTime:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 20:33:37 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/readWriteAccess/AbstractReadWriteAccessTest.kt

            val readWriteAccess = expressionAtCaret.readWriteAccess(true)
    
            val actual = buildString {
                appendLine("expression: ${expressionAtCaret.text}")
                appendLine("access type: $readWriteAccess")
            }
    
            testServices.assertions.assertEqualsToTestDataFileSibling(actual)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top