Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for PROPERTY (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            when:
            configurationCacheFails(":failedCount")
    
            then:
            configurationCache.assertStateLoaded()
            failureDescriptionContains("Execution failed for task ':failedCount'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

            override fun toRestoring(): Restoring {
                // Restoration must consider properties that was overridden after store.
                // When property was loaded and stored then loaded value will be presented for execution time after restore.
                // This is a wrong behavior if property was overridden. Execution time must see overridden value instead of restored one.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTransformNodeIdBuildOperationIntegrationTest.groovy

                        }
                    }
                }
    
                interface TargetColor extends TransformParameters {
                    @Input
                    Property<String> getTargetColor()
                    @Input
                    Property<Integer> getMultiplier()
                }
    
                abstract class MakeColor implements TransformAction<TargetColor> {
                    @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

                    @Internal
                    List<Object> values = new ArrayList()
                    @Input
                    final Property<String> sensitiveInput1 = project.objects.property(String).convention("sensitive_convention")
                    @Input
                    final Property<String> sensitiveInput2 = project.objects.property(String).convention(sensitiveInput1)
                }
                tasks.register("useSensitive", SensitiveTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            writeProperty(propertyName, propertyValue, PropertyKind.OutputProperty)
    
        val inputProperties = collectRegisteredInputsOf(task)
        writeCollection(inputProperties) { property ->
            property.run {
                when (this) {
                    is RegisteredProperty.InputFile -> {
                        val finalValue = DeferredUtil.unpackNestableDeferred(propertyValue)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/build.gradle.kts

        @get:OutputFile
        abstract val destFile: RegularFileProperty
    
        @get:Input
        abstract val mostRecent: Property<String>
    
        @get:Input
        abstract val versions: Property<String>
    
        @get:Input
        abstract val mostRecentSnapshot: Property<String>
    
        @TaskAction
        fun prepareVersions() {
            val properties = Properties()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

        abstract void buildLogicApplication(BuildInputRead read)
    
        abstract String getLocation()
    
        boolean isRestrictedDsl() {
            return false
        }
    
        def "reports undeclared system property read using #propertyRead.groovyExpression prior to task execution from plugin"() {
            buildLogicApplication(propertyRead)
            def configurationCache = newConfigurationCacheFixture()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertyGetterSymbol.kt

        override val annotations by cached {
            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
        /**
         * Returns [CallableId] of the delegated Java method if the corresponding property of this setter is a synthetic Java property.
         * Otherwise, returns `null`
         */
        override val callableId: CallableId? by cached {
            val fir = firSymbol.fir
            if (fir is FirSyntheticPropertyAccessor) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

            // Given: `val x: T = expression`
            // Expected type of `expression` is `T`
            val property = expression.unwrapQualified<KtProperty> { property, expr -> property.initializer == expr } ?: return null
            if (property.typeReference == null) return null
            return getReturnTypeForKtDeclaration(property).nonErrorTypeOrNull()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

            fixture.assertStateStored {
                projectsConfigured(":", ":a", ":b")
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/28204")
        def "access to #description delegated property value is causing a violation"() {
            given:
            settingsFile << """
                include("a")
            """
            buildKotlinFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top