Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 271 for PROPERTY (0.27 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/GradleCoreProblemGroup.java

            }
        }
    
        private static class DefaultValidationProblemGroup extends DefaultProblemGroup implements ValidationProblemGroup {
    
            private final ProblemGroup property = new DefaultProblemGroup("property-validation", "Gradle property validation", this);
    
            private final ProblemGroup type = new DefaultProblemGroup("type-validation", "Gradle type validation", this);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilder.java

                }
                builder.append(rootType.get()).append("' ");
            }
    
            Object property = additionalData.map(TypeValidationData::getPropertyName).orElse(null);
            if (property != null) {
                if (typeRelevant) {
                    builder.append("property '");
                } else {
                    if (pluginId.isPresent()) {
                        builder.append("In plugin '")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

                                            $property $modification
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            """
    
            and:
            succeeds ':test'
    
            then:
            skipped ':test'
    
            where:
            property                 | modification
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:property-validation:unexpected-input-file-type' : 'Unexpected input file type',
            'validation:property-validation:unsupported-notation' : 'Property has unsupported value',
            'validation:property-validation:unknown-implementation' : 'Unknown property implementation',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/PropertyTraceTest.kt

        @Test
        fun `field of bean found in input property of task`() {
    
            val beanType = PropertyTraceTest::class.java
            val taskType = Task::class.java
    
            assertThat(
                PropertyTrace.Property(
                    PropertyKind.Field,
                    "f",
                    PropertyTrace.Bean(
                        beanType,
                        PropertyTrace.Property(
                            PropertyKind.InputProperty,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtInitializerValue.kt

    import org.jetbrains.kotlin.analysis.api.base.KaConstantValue
    import org.jetbrains.kotlin.psi.KtExpression
    
    /**
     * Value representing some property or variable initializer
     */
    public sealed class KaInitializerValue {
        /**
         * [com.intellij.psi.PsiElement] of initializer. May be null if property/variable came from non-source file.
         */
        public abstract val initializerPsi: KtExpression?
    }
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     * that they don't leak the service: the lifetime of the property should be shorter or as long as the lifetime of the cached service.
     *
     * When caching a service inside another service, the property should also be [lazy] to avoid issues with cyclic service initialization and
     * excessive class loading on startup.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentExtension.kt

     * limitations under the License.
     */
    
    package gradlebuild.basics
    
    import org.gradle.api.file.DirectoryProperty
    import org.gradle.api.provider.Property
    
    
    interface BuildEnvironmentExtension {
        val gitCommitId: Property<String>
        val gitBranch: Property<String>
        val repoRoot: DirectoryProperty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 882 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     *
     * <p>
     * The store considers property annotations to belong to {@linkplain AnnotationCategory categories}.
     * Each property can have at most one annotation per category.
     * Validation failures with a given type can be visited using {@link TypeAnnotationMetadata#visitValidationFailures(TypeValidationContext)}.
     * </p>
     *
     * <strong>Property annotation inheritance</strong>
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

                    append("Gradle runtime")
                }
    
                is Property -> {
                    append(trace.kind)
                    append(" ")
                    quoted(trace.name)
                    append(" of ")
                }
    
                is SystemProperty -> {
                    append("system property ")
                    quoted(trace.name)
                    append(" set at ")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top