Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for hero (0.24 sec)

  1. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    	(LoweredMove [s] dst src mem)
    
    // Lowering Zero instructions
    (Zero [0] _ mem) => mem
    (Zero [1] destptr mem) => (I64Store8 destptr (I64Const [0]) mem)
    (Zero [2] destptr mem) => (I64Store16 destptr (I64Const [0]) mem)
    (Zero [4] destptr mem) => (I64Store32 destptr (I64Const [0]) mem)
    (Zero [8] destptr mem) => (I64Store destptr (I64Const [0]) mem)
    
    (Zero [3] destptr mem) =>
    	(I64Store8 [2] destptr (I64Const [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

         */
        private
        fun <C : Closeable, T : Closeable> safeWrap(innerSupplier: () -> C, unsafeWrapper: (C) -> T): T {
            // fine if we fail here
            val innerCloseable = innerSupplier()
            val outerCloseable = try {
                // but if we fail here, we need to ensure we close
                // the inner closeable, or else it will leak
                unsafeWrapper(innerCloseable)
            } catch (e: Throwable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                val firStatement = firLeaf.statements[0]
                if (firStatement is FirExpression && firStatement.resolvedType == firLeaf.resolvedType) {
                    // Trivial blocks might not appear in the CFG, so here we include their content
                    return firStatement
                }
            }
    
            return firLeaf
        }
    
        private fun computeCommonParent(statements: List<KtElement>): FirElement {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                if (hasParentPsi(symbol)) {
                    // getSymbol(ClassId) returns a symbol from the original file, so here we avoid using it
                    return getContainingDeclarationByPsi(symbol)
                }
            }
    
            when (symbol) {
                is KaLocalVariableSymbol,
                is KaAnonymousFunctionSymbol,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

        }
    
        @Test
        fun `keeps empty lines in line number counting`() {
            val results = parse(
                """
                import a.b.c
    
                // start of actual script content is here -- imports are counted separately because of the workarounds
    
                f(x)
    
    
                a = 1
                """.trimIndent()
            )
    
            val expected = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // as parentheses for the purpose of this analysis.
                is KtContainerNode ->
                    // !!!!CAUTION!!!! Not `parentUse(parent.parent, _parent_)`
                    // Here we assume the parent (e.g. If condition) statement
                    // ignores the ContainerNode when accessing child
                    doesParentUseChild(parent.parent, child)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            // If an element in the array has the same type as the containing array, it's a spread component that needs
            // to be expanded here. (It should have the array element type instead.)
            (constantValue as ArrayValue).value.expandArrayAnnotationValue(containingArrayType, analysisContext)
        } else {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    could even be mouse-clicks or menu items--whatever suits your program.
    
    You should also get your employer (if you work as a programmer) or your
    school, if any, to sign a "copyright disclaimer" for the program, if
    necessary. Here is a sample; alter the names:
    
        Yoyodyne, Inc., hereby disclaims all copyright interest in the
        program `Gnomovision' (which makes passes at compilers) written by
        James Hacker.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            // When you call a method from Java with type arguments, in FIR they are currently represented as flexible types.
            // TODO Consider handling other non-ConeLookupTagBasedType types here (see KT-66418)
            val type = getDeclaredType()?.lowerBoundIfFlexible() as? ConeLookupTagBasedType
    
            return type?.toTargetSymbol(session, symbolBuilder) ?: run {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

        const val performanceTestResultsJsonName = "perf-results.json"
        const val performanceTestResultsJson = "performance-tests/$performanceTestResultsJsonName"
    
        // Android Studio Jellyfish 2023.3.1
        // Find all references here https://developer.android.com/studio/archive
        // Update verification-metadata.xml
        const val performanceTestAndroidStudioVersion = "2023.3.1.18"
        val performanceTestAndroidStudioJvmArgs = listOf("-Xms256m", "-Xmx4096m")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top