Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,543 for Option (0.15 sec)

  1. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/EnumBuildOptionTest.groovy

            1 * receiver.accept(MyEnum.SHALT)
    
            when:
            option.applyFromProperty([test: 'nOt'], receiver)
    
            then:
            1 * receiver.accept(MyEnum.NOT)
    
            when:
            option.applyFromProperty([test: 'pazz'], receiver)
    
            then:
            RuntimeException ex = thrown()
            ex.message == "Option my option doesn't accept value 'pazz'. Possible values are [THOU, SHALT, NOT, PASS]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. .idea/runConfigurations/Generate_FIR_tree.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/compiler/fir/tree" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value="generateTree" />
            </list>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 24 09:56:13 UTC 2021
    - 827 bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/AbstractPropertiesCommandLineConverterTest.groovy

                option.hasDescription(_) >> option
            when:
                converter.configure(parser)
            then:
                1 * option.hasArguments() >> option
                1 * option.hasDescription(converter.propertyOptionDescription) >> option
                1 * parser.option(converter.propertyOption, converter.propertyOptionDetailed) >> option
        }
    
        def "parses properties args"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. .idea/runConfigurations/Generate_Compiler_Arguments_Copy.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/generators" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value="generateCompilerArgumentsCopy" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Apr 03 13:47:35 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. .idea/runConfigurations/Generate_MPP_Tests.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/libraries/tools/kotlin-project-model-tests-generator" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Aug 12 10:34:14 UTC 2022
    - 1001 bytes
    - Viewed (0)
  6. .idea/runConfigurations/Test__Kotlin_Gradle_Plugin___functionalTest___regression.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value=":kotlin-gradle-plugin:functionalRegressionTest" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 05 14:25:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. .idea/runConfigurations/Test__Kotlin_Gradle_Plugin___functionalTest___unit.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value=":kotlin-gradle-plugin:functionalUnitTest" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 05 14:25:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/command_line_interface_basics.adoc

    ----
    gradle [taskName...] [--option-name...]
    ----
    
    Options are allowed _before_ and _after_ task names.
    
    ----
    gradle [--option-name...] [taskName...]
    ----
    
    If multiple tasks are specified, you should separate them with a space.
    
    ----
    gradle [taskName1 taskName2...] [--option-name...]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. .idea/runConfigurations/Analysis_All_Tests.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value="analysisAllTests" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 13:39:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/StartParameterConverterTest.groovy

            parameter.logLevel == LogLevel.DEBUG
        }
    
        def "can provide parallelism option as command-line option"() {
            expect:
            def parameter = convert("--max-workers", "123")
            parameter.maxWorkerCount == 123
        }
    
        def "can provide parallelism option as system property on command-line"() {
            expect:
            def parameter = convert("-Dorg.gradle.workers.max=123")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top