Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AbstractCommandLineConverter (0.38 sec)

  1. platforms/core-runtime/cli/src/main/java/org/gradle/cli/AbstractCommandLineConverter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cli;
    
    public abstract class AbstractCommandLineConverter<T> implements CommandLineConverter<T> {
        @Override
        public T convert(Iterable<String> args, T target) throws CommandLineArgumentException {
            CommandLineParser parser = new CommandLineParser();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 985 bytes
    - Viewed (0)
  2. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/BuildOptionSet.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.buildoption;
    
    import org.gradle.cli.AbstractCommandLineConverter;
    import org.gradle.cli.CommandLineArgumentException;
    import org.gradle.cli.CommandLineConverter;
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/LayoutCommandLineConverter.java

     */
    
    package org.gradle.initialization;
    
    import org.gradle.cli.AbstractCommandLineConverter;
    import org.gradle.cli.CommandLineArgumentException;
    import org.gradle.cli.CommandLineConverter;
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    
    public class LayoutCommandLineConverter extends AbstractCommandLineConverter<BuildLayoutParameters> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 09:26:15 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/cli/src/main/java/org/gradle/cli/AbstractPropertiesCommandLineConverter.java

     * limitations under the License.
     */
    
    package org.gradle.cli;
    
    import java.util.Map;
    
    public abstract class AbstractPropertiesCommandLineConverter extends AbstractCommandLineConverter<Map<String, String>> {
        protected abstract String getPropertyOption();
        protected abstract String getPropertyOptionDetailed();
        protected abstract String getPropertyOptionDescription();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.cli.AbstractCommandLineConverter> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AbstractCommandLineConverter.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top