Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,636 for Option (0.14 sec)

  1. .idea/runConfigurations/Test__Kotlin_Gradle_Plugin___functionalTest.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:functionalTest" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 05 14:25:01 UTC 2023
    - 1020 bytes
    - Viewed (0)
  2. .idea/runConfigurations/Test__Kotlin_Gradle_Plugin___functionalTest___dependency_resolution.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>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 05 14:25:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/ParsedCommandLineOptionSpec.groovy

        }
    
        def "reports multiple values"() {
            when:
            option.addArgument("foo")
            option.addArgument("bar")
    
            then:
            option.hasValue()
            ["foo", "bar"] == option.values
    
            when:
            option.getValue()
    
            then:
            thrown(IllegalStateException)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. 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)
  5. .idea/runConfigurations/Generate_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="generateTests" />
            </list>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 29 11:50:01 UTC 2023
    - 740 bytes
    - Viewed (0)
  6. 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)
  7. .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)
  8. 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)
  9. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

                    sb.append(option.getOpt());
                    sb.append("'>");
                    sb.append(option.getOpt());
                    sb.append("</a>");
                }
    
                if (nonNull(option.getLongOpt())) {
                    if (nonNull(option.getOpt())) {
                        sb.append(", ");
                    }
                    sb.append("--<a name='");
                    sb.append(option.getLongOpt());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. .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)
Back to top