Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,965 for Option (0.19 sec)

  1. .idea/runConfigurations/Generate_Analysis_Tests.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/generators/analysis-api-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 Mar 01 17:29:07 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. 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)
  3. .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)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

        }
    
        def "can render option with help for Java task with property"() {
            given:
            file('buildSrc/src/main/java/SampleTask.java') << taskWithSinglePropertyOption('Property', 'String')
            buildFile << sampleTask()
    
            when:
            succeeds('help', '--task', 'sample')
    
            then:
            outputContains("""
    Options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/policy_options_test.go

    )
    
    type optionAvailTest struct {
    	option            string
    	featureGate       featuregate.Feature
    	featureGateEnable bool
    	expectedAvailable bool
    }
    
    func TestPolicyDefaultsAvailable(t *testing.T) {
    	testCases := []optionAvailTest{
    		{
    			option:            "this-option-does-not-exist",
    			expectedAvailable: false,
    		},
    		{
    			option:            FullPCPUsOnlyOption,
    			expectedAvailable: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

        }
    
        def "generates -target option when current Jvm Version is used"() {
            spec.targetCompatibility = JavaVersion.current().toString()
    
            expect:
            builder.build() == ["-target", JavaVersion.current().toString()] + defaultOptions
        }
    
        def "generates -target option when compatibility differs current Jvm version"() {
            spec.targetCompatibility = "1.4"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

        /**
         * Creates a {@link Choice} that can ask the user to select an option from the given list and returns the answer.
         * Uses the {@link Object#toString()} representation of the options to format the prompt, the returned {@link Choice} can be used to change this.
         * Does not prompt the user when there is only one option in the given list.
         *
         * @param question The text of the question.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. .idea/runConfigurations/Analysis_API_FE1_0_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=":analysis:analysis-api-fe10:test" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 13:39:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

            options.addOption(Option.builder(Character.toString(QUIET))
                    .longOpt("quiet")
                    .desc("Quiet output - only show errors")
                    .build());
            options.addOption(Option.builder(Character.toString(VERBOSE))
                    .longOpt("verbose")
                    .desc("Produce execution verbose output")
                    .build());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top