Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for reportMissingInput (0.21 sec)

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

            @Override
            public void doValidate(String propertyName, Object value, PropertyValidationContext context) {
                File file = toFile(context, value);
                if (!file.exists()) {
                    reportMissingInput(context, "File", propertyName, file);
                } else if (!file.isFile()) {
                    reportUnexpectedInputKind(context, "File", propertyName, file);
                }
            }
        },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top