Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 193 for Reference (0.4 sec)

  1. build-logic/documentation/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate Gradle's DSL reference, User Manual and Javadocs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":build-update-utils"))
    
        implementation("com.github.javaparser:javaparser-core")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

                assertHasErrorOutput("Unresolved reference: sourceCompatibility")
            }
    
            withFile("applied.gradle.kts", """
                buildscript {
                    dependencies {}
                }
                println(java.sourceCompatibility)
            """)
            buildAndFail("help").apply {
                assertHasErrorOutput("Unresolved reference: sourceCompatibility")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                            reference("allprojects")
                        }
                    }
                }
            }
    
            private
            fun StructuredMessage.Builder.reference(project: ProjectInternal) = reference(project.identityPath.toString())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtContractBooleanExpression.kt

     */
    public sealed interface KaContractBooleanExpression : KaLifetimeOwner
    
    public typealias KtContractBooleanExpression = KaContractBooleanExpression
    
    /**
     * Represents boolean parameter reference passed to `booleanExpression` argument of [kotlin.contracts.SimpleEffect.implies].
     */
    public class KaContractBooleanValueParameterExpression(
        private val backingParameterSymbol: KaParameterSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/references/HLApiReferenceProviderService.kt

    import com.intellij.util.containers.ConcurrentFactoryMap
    import com.intellij.util.containers.MultiMap
    import org.jetbrains.kotlin.idea.references.KotlinPsiReferenceProvider
    import org.jetbrains.kotlin.idea.references.KotlinPsiReferenceRegistrar
    import org.jetbrains.kotlin.idea.references.KotlinReferenceProviderContributor
    import org.jetbrains.kotlin.psi.KotlinReferenceProvidersService
    import org.jetbrains.kotlin.utils.SmartList
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Apr 10 16:23:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. README.md

    [![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
    [![Go.Dev reference](https://img.shields.io/badge/go.dev-reference-blue?logo=go&logoColor=white)](https://pkg.go.dev/gorm.io/gorm?tab=doc)
    
    ## Overview
    
    * Full-Featured ORM
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

    public typealias KtAnnotationApplicationValue = KaAnnotationApplicationValue
    
    /**
     * Class reference used as annotation argument. E.g: `@A(String::class)`
     */
    public open class KaKClassAnnotationValue(
        type: KaType,
        classId: ClassId?,
        sourcePsi: KtElement?,
        token: KaLifetimeToken
    ) : KaAnnotationValue(token) {
        /**
         * The referenced [ClassId], if available.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/artifact-handlers.apt

    ~~ KIND, either express or implied.  See the License for the
    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
     ---
     Legacy Artifact Handlers Reference
     ---
     Hervé Boutemy
     ---
     2013-08-02
     ---
    
    Legacy Artifact Handlers Reference
    
      Maven 3 artifact handlers (see {{{../maven-artifact/apidocs/org/apache/maven/artifact/handler/ArtifactHandler.html} API}})
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 06:12:44 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    import org.jetbrains.kotlin.idea.references.KtReference
    import org.jetbrains.kotlin.psi.KtElement
    
    @KaAnalysisApiInternals
    public abstract class KaResolver : KaSessionComponent() {
        public abstract fun resolveToSymbols(reference: KtReference): Collection<KaSymbol>
    
        public abstract fun resolveCall(psi: KtElement): KaCallInfo?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/LocalValueTest.kt

            assertTrue { ErrorReason.UnresolvedAssignmentRhs in errorReasons }
            assertTrue {
                errorReasons.any {
                    with(it) {
                        this is ErrorReason.UnresolvedReference && reference.run {
                            this is PropertyAccess && name == "m"
                        }
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top