Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for visitDestroyableProperty (0.36 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultTaskProperties.java

                this.beanName = beanName;
                this.fileCollectionFactory = fileCollectionFactory;
            }
    
            @Override
            public void visitDestroyableProperty(Object value) {
                destroyables.add(value);
            }
    
            public FileCollection getFiles() {
                return fileCollectionFactory.resolvingLeniently(beanName + " destroy files", destroyables);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            1 * visitor.visitOutputFileProperty('bean.outputDir', false, { it.call().path == 'outputDir' }, OutputFilePropertyType.DIRECTORY)
    
            1 * visitor.visitDestroyableProperty({ it.call().path == 'destroyed' })
    
            1 * visitor.visitLocalStateProperty({ it.call().path == 'localState' })
    
            0 * _
        }
    
        static class MyTask extends DefaultTask {
    
            @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                                println "Output file property '\${propertyName}'"
                            }
    
                            @Override
                            void visitDestroyableProperty(Object path) {
                                println "Destroys: '\${path.call()}'"
                            }
    
                            @Override
                            void visitLocalStateProperty(Object value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

                isProducer = true;
            }
    
            @Override
            public void visitDestroyableProperty(Object value) {
                isDestroyer = true;
            }
    
            @Override
            public void visitLocalStateProperty(Object value) {
                isProducer = true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top