Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ProjectPropertiesCommandLineConverter (0.35 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cli;
    
    public class ProjectPropertiesCommandLineConverter extends AbstractPropertiesCommandLineConverter {
    
        @Override
        protected String getPropertyOption() {
            return "P";
        }
    
        @Override
        protected String getPropertyOptionDetailed() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/StartParameterConverter.java

        private final ProjectPropertiesCommandLineConverter projectPropertiesCommandLineConverter = new ProjectPropertiesCommandLineConverter();
        private final BuildOptionBackedConverter<StartParameterInternal> buildOptionsConverter = new BuildOptionBackedConverter<>(new StartParameterBuildOptions());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/ProjectPropertiesCommandLineConverterTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.cli
    
    import spock.lang.Specification
    
    class ProjectPropertiesCommandLineConverterTest extends Specification{
      def converter = new ProjectPropertiesCommandLineConverter();
    
      def convert(String... args) {
        converter.convert(Arrays.asList(args), new HashMap<String, String>()).sort()
      }
    
      def "parses project properties args"() {
        expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.cli.ProjectPropertiesCommandLineConverter> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ProjectPropertiesCommandLineConverter.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