Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for Invalid (1.05 sec)

  1. ChangeLog.md

    - [`KT-56988`](https://youtrack.jetbrains.com/issue/KT-56988) CFG, smart casts: red in K1 -> green in K2 for invalid code
    - [`KT-62118`](https://youtrack.jetbrains.com/issue/KT-62118) FIR: "HashMap.entry" has invalid enhanced type
    - [`KT-64840`](https://youtrack.jetbrains.com/issue/KT-64840) K2: Bare type are not allowed for TV based values during PCLA
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractAnalysisSessionInvalidationTest.kt

        override fun getSessionKtModule(session: KaSession): KtModule = session.useSiteModule
        override fun isSessionValid(session: KaSession): Boolean = session.isValid()
    
        /**
         * The analysis session cache disregards whether libraries were invalidated during global invalidation, so some valid library analysis
         * sessions may have been evicted from the cache and should not be checked for validity.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/lifetime/KtLifetimeOwner.kt

    package org.jetbrains.kotlin.analysis.api.lifetime
    
    public interface KaLifetimeOwner {
        public val token: KaLifetimeToken
    }
    
    public typealias KtLifetimeOwner = KaLifetimeOwner
    
    public fun KaLifetimeOwner.isValid(): Boolean = token.isValid()
    
    @Suppress("NOTHING_TO_INLINE")
    public inline fun KaLifetimeOwner.assertIsValidAndAccessible() {
        token.assertIsValidAndAccessible()
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/EntityWasGarbageCollectedException.kt

    package org.jetbrains.kotlin.analysis.api.fir.utils
    
    class EntityWasGarbageCollectedException(entity: String) : IllegalStateException() {
        override val message: String = "$entity was garbage collected while KaSession session is still valid"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 455 bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/sessionBuilderTestUtils.kt

            override fun getPath(): String = "/$fileName"
    
            override fun isWritable(): Boolean = false
    
            override fun isDirectory(): Boolean = false
    
            override fun isValid(): Boolean = ktFile.isValid
    
            override fun getParent(): VirtualFile {
                error("Not yet implemented")
            }
    
            override fun getChildren(): Array<VirtualFile> = emptyArray()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. doc/next/7-ports.md

    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    <!-- go.dev/issue/61476, CL 541135 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

    | 7  | `@apiSpec`    | Adds a “API Requirements” heading                                              | A description that applies equally to all valid implementations of the method, including preconditions, postconditions, etc                                                                                        |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_trimpath_goroot.txt

    #
    # When built with -trimpath, runtime.GOROOT() returned the bogus string "go"
    # if GOROOT was not set explicitly in the environment.
    # It should instead return the empty string, since we know that we don't
    # have a valid path to return.
    
    [trimpath] env GOROOT=
    [trimpath] ! go env GOROOT
    [trimpath] stderr '^go: cannot find GOROOT directory: ''go'' binary is trimmed and GOROOT is not set$'
    [trimpath] env GOROOT=$TESTGO_GOROOT
    
    [short] stop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

        }
    
        private
        object Vars {
    
            const val Program = 0
    
            const val ProgramHost = 1
    
            const val ScriptHost = 2
    
            // Only valid within the context of `overrideExecute`
            const val PluginRequestCollector = 3
        }
    
        private
        val programHostToKotlinScriptHostToVoid =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AND (MOVDconst [m]) (ROTLW x r)) && isPPC64WordRotateMask(m) => (RLWNM [encodePPC64RotateMask(0,m,32)] x r)
    
    // Note, any rotated word bitmask is still a valid word bitmask.
    (ROTLWconst [r] (AND (MOVDconst [m]) x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,rotateLeft32(m,r),32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top