Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMapPropertyInput (0.67 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

                    @Input
                    abstract ListProperty<URL> getListPropertyInput();
    
                    @Input
                    abstract MapProperty<String, URL> getMapPropertyInput();
    
                    @Nested
                    abstract NestedBean getNestedInput();
                }
    
                tasks.register('verify', TaskWithInput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

                    $annotation
                    abstract ListProperty<ResolvedArtifactResult> getListPropertyInput();
    
                    $annotation
                    abstract MapProperty<String, ResolvedArtifactResult> getMapPropertyInput();
    
                    @Nested
                    abstract NestedBean getNestedInput();
                }
    
                tasks.register('verify', TaskWithInput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                    @Input
                    public abstract ListProperty<URL> getListPropertyInput();
    
                    @Input
                    public abstract MapProperty<String, URL> getMapPropertyInput();
    
                    @Nested
                    public NestedBean getNestedBean() { return nested; }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                    public abstract ListProperty<ResolvedArtifactResult> getListPropertyInput();
    
                    @$annotation
                    public abstract MapProperty<String, ResolvedArtifactResult> getMapPropertyInput();
    
                    @Nested
                    public NestedBean getNestedBean() { return nested; }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top