Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for readDescription (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/AbstractOptionElement.java

        private final String description;
        private final Class<?> optionType;
    
        public AbstractOptionElement(String optionName, Option option, Class<?> optionType, Class<?> declaringClass) {
            this(readDescription(option, optionName, declaringClass), optionName, optionType);
        }
    
        protected AbstractOptionElement(String description, String optionName, Class<?> optionType) {
            this.description = description;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasonSerializer.java

        @Override
        public ComponentSelectionReason read(Decoder decoder) throws IOException {
            ComponentSelectionDescriptor[] descriptions = readDescriptions(decoder);
            return ComponentSelectionReasons.of(descriptions);
        }
    
        private ComponentSelectionDescriptor[] readDescriptions(Decoder decoder) throws IOException {
            int size = decoder.readSmallInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top