Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for COUNT (0.57 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractMultiModuleSymbolByPsiTest.kt

                        debugPrinter.appendLine()
    
                        prettyPrinter.withIndents(indentCount = declaration.parentsOfType<KtDeclaration>(withSelf = false).count()) {
                            prettyPrinter.appendLine(symbol.render(KaDeclarationRendererForDebug.WITH_QUALIFIED_NAMES))
                            prettyPrinter.appendLine()
                        }
                    }
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/qualifiers/UsualClassTypeQualifierBuilder.kt

            designation.forEachIndexed { index, currentClass ->
                val typeParameters = if (needToRenderTypeParameters(index)) {
                    val typeParametersCount = currentClass.typeParameters.count { it is FirTypeParameter }
                    val begin = typeParametersLeft - typeParametersCount
                    val end = typeParametersLeft
                    check(begin >= 0)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                prepareReportForCiPublishing(tmpTestFiles + reports)
            } else {
                prepareReportForCiPublishing(reports)
            }
        }
    
        // We count the test task containing flaky result as failed
        private
        fun containsFailedTest(testBinaryResultsDir: File): Boolean {
            var containingFailures = false
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. api/go1.23.txt

    pkg net, type DNSError struct, UnwrapErr error #63116
    pkg net, type Dialer struct, KeepAliveConfig KeepAliveConfig #62254
    pkg net, type KeepAliveConfig struct #62254
    pkg net, type KeepAliveConfig struct, Count int #62254
    pkg net, type KeepAliveConfig struct, Enable bool #62254
    pkg net, type KeepAliveConfig struct, Idle time.Duration #62254
    pkg net, type KeepAliveConfig struct, Interval time.Duration #62254
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                .sortedBy { it.simpleName }
                .first()
        }
    
        private fun PsiElement.firstLineOfPsi(): String {
            val text = text
            val lines = text.lines()
            return if (lines.count() <= 1) text
            else lines.first() + " ..."
        }
    
        public companion object {
            private val ignoredPropertyNames = setOf(
                "psi",
                "token",
                "builder",
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            } ?: unexpectedElementError<PsiElement>(type)
    
            val ktTypeElementFromFirType = unwrapType(fir.psi)
    
            val classifiersToSkip = expression.parents.takeWhile { it != ktTypeElementFromFirType }.count()
            var classifier: FirClassLikeSymbol<*>? = fir.type.toRegularClassSymbol(session)
            repeat(classifiersToSkip) {
                classifier = classifier?.getContainingClassSymbol(session)
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-63345`](https://youtrack.jetbrains.com/issue/KT-63345) K2: FIR2IR chooses an incorrect type for smartcast in case of SAM conversion
    - [`KT-63848`](https://youtrack.jetbrains.com/issue/KT-63848) ReflectiveAccessLowering does not count arguments of super-calls
    - [`KT-62544`](https://youtrack.jetbrains.com/issue/KT-62544) K2: IllegalAccessError when functional type argument is inferred to package-private type
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // POPCNT treats the input register as a vector of 8 bytes, producing
    // a population count for each individual byte. For inputs larger than
    // a single byte we therefore need to sum the individual bytes produced
    // by the POPCNT instruction. For example, the following instruction
    // sequence could be used to calculate the population count of a 4-byte
    // value:
    //
    //     MOVD   $0x12345678, R1 // R1=0x12345678 <-- input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Sqrt32 ...) => (SQRTF ...)
    (Abs ...) => (ABSD ...)
    
    // TODO: optimize this for ARMv5 and ARMv6
    (Ctz32NonZero ...) => (Ctz32 ...)
    (Ctz16NonZero ...) => (Ctz32 ...)
    (Ctz8NonZero ...) => (Ctz32 ...)
    
    // count trailing zero for ARMv5 and ARMv6
    // 32 - CLZ(x&-x - 1)
    (Ctz32 <t> x) && buildcfg.GOARM.Version<=6 =>
    	(RSBconst [32] (CLZ <t> (SUBconst <t> (AND <t> x (RSBconst <t> [0] x)) [1])))
    (Ctz16 <t> x) && buildcfg.GOARM.Version<=6 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top