Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 99 for ginney (0.39 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        remoteUri = 'https://github.com/gradle/perf-android-large-2.git'
        // Pinned from android-73-kotlin-16 branch
        ref = "a67ceb08a7b4e4a71e3c151a3abd72a9abe5d703"
    }
    
    performanceTest.registerAndroidTestProject("nowInAndroidBuild", RemoteProject) {
        remoteUri = 'https://github.com/android/nowinandroid.git'
        // Pinned from main branch
        ref = "b85cf7d4766ca84a424700f86a96f5eab0a3cfbd" // latest of May 14th, 2024
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/loopLabelBreakLabel.kt

    fun test() {
    
        outer@while(true) {
            inner@while(false) {
                break<expr>@outer</expr>
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 121 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/loopLabel.kt

    fun test() {
    
        <expr>outer@</expr>while(true) {
            inner@while(false) {
                break@outer
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 121 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/classes.kt

    class A {
        class B {
            class C {
    
            }
        }
    }
    
    interface D {
        inner class E {
            enum class F {
    
            }
        }
    }
    
    enum class G {
        H, I
    }
    
    
    fun foo() {
        class D {
    
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 26 19:19:00 UTC 2022
    - 201 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/nestedOuterClass.txt

    public final class CodeFragment {
        // source: 'fragment.kt'
        public method <init>(): void
        public final static method run(p0: Foo, p1: Foo$Bar): int
        public final inner class Foo$Bar
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 197 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localMutated.txt

    public final class CodeFragment {
        // source: 'fragment.kt'
        public method <init>(): void
        public final static method generated_for_debugger_fun(p0: kotlin.jvm.internal.Ref$IntRef): void
        public final inner class kotlin/jvm/internal/Ref$IntRef
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 258 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosureMutating.txt

    public final class CodeFragment {
        // source: 'fragment.kt'
        public method <init>(): void
        public final static method run(p0: kotlin.jvm.internal.Ref$IntRef): void
        public final inner class kotlin/jvm/internal/Ref$IntRef
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 265 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/classDecl.txt

        fun test(): Int {
            return 45 * K
        }
    
        fun count(xs: List<T>): Int {
            return xs.size
        }
    
        override fun i(t: T): Int {
            return test() + t.hashCode()
        }
    
        inner class B() {
    
        }
    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 357 bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         *
         * ```kotlin
         * abstract class A {
         *     class C1
         *     inner class D1
         *     object O1
         *
         *     // There is no way to declare a static callable in an abstract class, as only enum classes define additional static callables.
         * }
         *
         * class B : A() {
         *     class C2
         *     inner class D2
         *     object O2
         *     companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/classDeclTypeParam.kt

        fun test(): Int {
            return 45 * K
        }
    
        fun count(xs: List<T>): Int {
            return xs.size
        }
    
        override fun i(t: T): Int {
            return test() + t.hashCode()
        }
    
        inner class B() {
    
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 360 bytes
    - Viewed (0)
Back to top