Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 161 for propertyNames (0.78 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/validation/ValidationProblemPropertyAnnotationHandler.java

        }
    
        @Override
        public boolean isPropertyRelevant() {
            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
        }
    
        @Override
        public void validatePropertyMetadata(PropertyMetadata propertyMetadata, TypeValidationContext validationContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DelegatedGradlePropertiesExtensionsTest.kt

                }
            }
    
            private
            fun verifyTryGetProperty(propertyName: String) =
                inOrder(target, dynamicObject) {
                    verify(target as DynamicObjectAware).asDynamicObject
                    verify(dynamicObject).tryGetProperty(propertyName)
                    verifyNoMoreInteractions()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:44:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskInputsTest.groovy

                @Override
                void visitInputFileProperty(String propertyName, boolean optional, InputBehavior behavior, DirectorySensitivity emptyDirectorySensitivity, LineEndingSensitivity lineEndingNormalization, @Nullable FileNormalizer fileNormalizer, PropertyValue value, InputFilePropertyType filePropertyType) {
                    names += propertyName
                }
            })
            then:
            names == ['$1', '$2']
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/projection/ManagedModelProjection.java

                    private <T> T doGet(ModelProperty<T> property, String propertyName) {
                        ModelType<T> propertyType = property.getType();
    
                        // TODO we are relying on the registration having established these links, we should be checking
                        MutableModelNode propertyNode = modelNode.getLink(propertyName);
                        propertyNode.ensureUsable();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/InputPropertyAnnotationHandler.java

        @Override
        public boolean isPropertyRelevant() {
            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
            visitor.visitInputProperty(propertyName, value, propertyMetadata.isAnnotationPresent(Optional.class));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BroadcastChangingOutputsStep.java

            ImmutableList.Builder<String> builder = ImmutableList.builder();
            work.visitOutputs(context.getWorkspace(), new UnitOfWork.OutputVisitor() {
                @Override
                public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                    builder.add(value.getValue().getAbsolutePath());
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:23 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/PropertyAnnotationHandler.java

         */
        boolean isPropertyRelevant();
    
        /**
         * Visit the value of a property with this annotation attached.
         */
        void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor);
    
        /**
         * Visits problems associated with the given property, if any.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultOutputSnapshotterTest.groovy

            }
            1 * fileCollectionSnapshotter.snapshot(contents) >> { throw failure }
            0 * _
    
            then:
            def ex = thrown OutputSnapshotter.OutputFileSnapshottingException
            ex.propertyName == "output"
            ex.cause == failure
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/TaskPropertyTestUtils.groovy

            GetInputPropertiesVisitor visitor = new GetInputPropertiesVisitor()
            TaskPropertyUtils.visitProperties(propertyWalker, task, visitor)
            return visitor.getProperties().collectEntries { [it.propertyName, it.value.call()] }
        }
    
        static FileCollection getInputFiles(DefaultTask task) {
            def fileCollectionFactory = task.getServices().get(FileCollectionFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:57 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

        pluginsExtension.name,
        accessorDescriptorFor(pluginsExtension.receiverType.internalName, pluginsExtension.returnType.internalName)
    )
    
    
    internal
    fun jvmGetterSignatureFor(propertyName: String, desc: String): JvmMethodSignature =
        // Accessors honor the kotlin property jvm interop convention.
        // The only difference with JavaBean 1.01 is to prefer `get` over `is` for boolean properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top