Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getWithParameter (0.15 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
                        return count;
                    }
    
                    // Ignored because static
                    public static int getStatic() {
                        return 0;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
                        return count;
                    }
    
                    public long getter() {
                        return 0L;
                    }
    
                    // Ignored because static
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
Back to top