Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for Schile (0.1 sec)

  1. analysis/analysis-api/testData/components/expressionInfoProvider/returnExpressionTargetSymbol/normalReturn.kt

    }
    
    fun bar(): String {
        return/* bar@(5,1) */""
    }
    
    fun baz(): Int {
        if (true) {
            return/* baz@(9,1) */1
        } else {
            return/* baz@(9,1) */2
        }
    }
    
    fun quux(): Int {
        while(true) {
            return/* quux@(17,1) */1
        }
        return/* quux@(17,1) */2
    }
    
    fun test() {
        run {
            return/* test@(24,1) */
        }
        fun() {
            return/* null@(28,5) */
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Nov 19 22:29:17 UTC 2021
    - 510 bytes
    - Viewed (0)
  2. 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)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // implicit invoke call. For example,
                    // ```
                    // fun test(f: () -> Unit) {
                    //   f() // calleeExpression `f` resolves to the local variable access, while `f()` resolves to the implicit `invoke` call.
                    //       // This way `f` is also the explicit receiver of this implicit `invoke` call
                    // }
                    // ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            get() {
                return when (this) {
                    is ConeErrorType -> when (val diagnostic = this.diagnostic) {
                        // Tolerate code that misses type parameters while shortening it.
                        is ConeUnmatchedTypeArgumentsError -> diagnostic.symbol.classId
                        else -> null
                    }
                    is ConeClassLikeType -> lookupTag.classId
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

            ref
    
        operator fun setValue(t: Any?, property: KProperty<*>, value: Parser<T>) {
            parser = value
        }
    
        private
        var parser: Parser<T> = { error("Parser cannot be used while it's being constructed") }
    
        private
        val ref: Parser<T> = { parser() }
    }
    
    
    /**
     * Returns a shell parser, holding a mutable reference to another parser.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessPattern.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.project.ProjectInternal
    
    
    internal
    enum class CrossProjectModelAccessPattern {
        DIRECT,
        CHILD,
        SUBPROJECT,
        ALLPROJECTS
    }
    
    
    internal
    data class CrossProjectModelAccessInstance(
        val pattern: CrossProjectModelAccessPattern,
        val relativeTo: ProjectInternal,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 964 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ClassLoaderScopeExtensions.kt

        action(this)
        traverseAncestors(action)
    }
    
    
    internal
    inline fun ClassLoaderScope.traverseAncestors(action: (ClassLoaderScope) -> Unit) {
        var scope = this
        while (scope.parent != scope) {
            scope = scope.parent
            action(scope)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. LICENSE

          other commercial damages or losses), even if such Contributor
          has been advised of the possibility of such damages.
    
       9. Accepting Warranty or Additional Liability. While redistributing
          the Work or Derivative Works thereof, You may choose to offer,
          and charge a fee for, acceptance of support, warranty, indemnity,
          or other liability obligations and/or rights consistent with this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/main/webapp/css/bootstrap.min.css.map

    flex-start;\n}\n\n.btn-toolbar .input-group {\n  width: auto;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) {\n  margin-left: -1px;\n}\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n\n....
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            fun isRemoteScriptUpToDate(uri: URI): Boolean
        }
    
        suspend fun ReadContext.checkBuildScopedFingerprint(): CheckedFingerprint {
            // TODO: log some debug info
            while (true) {
                when (val input = read()) {
                    null -> break
                    is ConfigurationCacheFingerprint -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top