Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,860 for property2 (0.74 sec)

  1. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/resolver/Fe10IdeNormalAnalysisSourceModuleResolveCallTestGenerated.java

          }
    
          @Test
          @TestMetadata("property1.kt")
          public void testProperty1() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/propertyAccess/property1.kt");
          }
    
          @Test
          @TestMetadata("property2.kt")
          public void testProperty2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/resolver/Fe10IdeNormalAnalysisSourceModuleResolveCandidatesTestGenerated.java

          }
    
          @Test
          @TestMetadata("property1.kt")
          public void testProperty1() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/propertyAccess/property1.kt");
          }
    
          @Test
          @TestMetadata("property2.kt")
          public void testProperty2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/resolver/Fe10IdeNormalAnalysisSourceModuleResolveReferenceTestGenerated.java

          }
    
          @Test
          @TestMetadata("property1.kt")
          public void testProperty1() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/propertyAccess/property1.kt");
          }
    
          @Test
          @TestMetadata("property2.kt")
          public void testProperty2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 215.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/resolver/FirStandaloneNormalAnalysisSourceModuleResolveReferenceTestGenerated.java

          }
    
          @Test
          @TestMetadata("property1.kt")
          public void testProperty1() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/propertyAccess/property1.kt");
          }
    
          @Test
          @TestMetadata("property2.kt")
          public void testProperty2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 215.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisSourceModuleResolveCandidatesTestGenerated.java

          }
    
          @Test
          @TestMetadata("property1.kt")
          public void testProperty1() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/propertyAccess/property1.kt");
          }
    
          @Test
          @TestMetadata("property2.kt")
          public void testProperty2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.1K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-property-with-project-expressions.xml

      <packaging>pom</packaging>
    
      <profiles>
    
        <profile>
          <id>property-name-project-version</id>
          <activation>
            <property>
              <name>${project.version}</name>
            </property>
          </activation>
        </profile>
        <profile>
          <id>property-value-project-version</id>
          <activation>
            <property>
              <name>project.version</name>
              <value>${project.version}</value>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/property/tests/property.sample.conf

    Laura Kassovic <******@****.***> 1712936267 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 15:37:47 UTC 2024
    - 176 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyDelegate.kt

    }
    
    
    internal
    fun propertyDelegateFor(dynamicLookupRoutine: DynamicLookupRoutine, target: Any, property: KProperty<*>): PropertyDelegate =
        dynamicObjectFor(target).let { owner ->
            if (property.returnType.isMarkedNullable) NullableDynamicPropertyDelegate(dynamicLookupRoutine, owner, property.name)
            else NonNullDynamicPropertyDelegate(dynamicLookupRoutine, owner, property.name) { target.toString() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/AbstractDevelocityInputIgnoringServiceIntegrationTest.groovy

                println "buildscript.property = \${propertyProvider.get()}"
    
                task check {}
            """
    
            when:
            succeeds("check", "-Dproperty=value")
    
            then:
            outputContains("backgroundJob.property = value")
            outputContains("buildscript.property = value")
            configurationCache.assertStateStored()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyStateExtensions.kt

    package org.gradle.kotlin.dsl
    
    import org.gradle.api.provider.Property
    
    import kotlin.reflect.KProperty
    
    
    /**
     * Property delegate for [Property] instances.
     *
     * Example: `val someProperty by somePropertyState`
     */
    operator fun <T> Property<T>.getValue(receiver: Any?, property: KProperty<*>): T = get()
    
    
    /**
     * Property delegate for [Property] instances.
     *
     * Example: `var someProperty by somePropertyState`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top