Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 161 for propertyNames (0.24 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromProperties.kt

            return getters.map { (name, getter) ->
                checkNotNull(getter)
                val nameAfterGet = name.substringAfter("get")
                val propertyName = nameAfterGet.replaceFirstChar { it.lowercase(Locale.getDefault()) }
                val type = propertyValueType(getter.returnType).toDataTypeRefOrError()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Configuring.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target(ElementType.METHOD)
    @Retention(RetentionPolicy.RUNTIME)
    public @interface Configuring {
        String propertyName() default "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 970 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NoOpPropertyAnnotationHandler.java

            super(annotationType, Kind.OTHER, ImmutableSet.of());
        }
        @Override
        public boolean isPropertyRelevant() {
            return false;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/MutableUnitOfWorkBuilder.groovy

                }
    
                @Override
                void visitRegularInputs(UnitOfWork.InputVisitor visitor) {
                    inputProperties.each { propertyName, value ->
                        visitor.visitInputProperty(propertyName, () -> value)
                    }
                    for (entry in inputFiles.entrySet()) {
                        visitor.visitInputFileProperty(
                            entry.key,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

                    with(it.find { it instanceof Map && it['propertyName'] == 'stableClasspath' }, Map) {
                        files.collect { new File(it as String) }.containsAll(expectedClasspath)
                    }
                }
                with(outputFileProperties, List) {
                    !empty
                    with(it.find { it instanceof Map && it['propertyName'] == 'reports.enabledReports.html.outputLocation' }, Map) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskInputFilePropertyBuilderInternal.java

        TaskInputFilePropertyBuilderInternal withInternalNormalizer(FileNormalizer normalizer);
    
        @Override
        TaskInputFilePropertyBuilderInternal withPropertyName(String propertyName);
    
        @Override
        TaskInputFilePropertyBuilderInternal withPathSensitivity(PathSensitivity sensitivity);
    
        @Override
        TaskInputFilePropertyBuilderInternal skipWhenEmpty();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedBeanAnnotationHandler.java

        }
    
        @Override
        public boolean isPropertyRelevant() {
            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
        }
    
        @Override
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/annotations/LocalStatePropertyAnnotationHandler.java

        }
    
        @Override
        public boolean isPropertyRelevant() {
            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
            visitor.visitLocalStateProperty(value);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 18 11:36:48 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/annotations/DestroysPropertyAnnotationHandler.java

        }
    
        @Override
        public boolean isPropertyRelevant() {
            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
            visitor.visitDestroyableProperty(value);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 18 11:36:48 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultInputFingerprinterTest.groovy

            then:
            def ex = thrown InputFingerprinter.InputFingerprintingException
            ex.message == "Cannot fingerprint input property 'input': value 'failing-value' cannot be serialized."
            ex.propertyName == "input"
            ex.cause == failure
        }
    
        def "reports file snapshotting problem"() {
            def failure = new UncheckedIOException(new IOException("Error"))
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top