Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,273 for Option (0.13 sec)

  1. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/Option.java

     * property. Some options may also be configurable via the Gradle API, for example feature previews.
     */
    public interface Option {
        abstract class Value<T> {
            public abstract boolean isExplicit();
    
            public abstract T get();
    
            /**
             * Creates the default value for an option.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/tasks/options/Option.java

     * </p>
     * <p>
     * When the option names are unequal, the order described above is used when setting the option's value.
     * If the base class has an option with the name "foo" and an interface has an option with the name "bar",
     * the option "foo" will have precedence over the option "bar" and setting both will result in the value of "foo".
     * </p>
     * <p>
     * <strong>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. istioctl/pkg/cli/option.go

    Xiaopeng Han <******@****.***> 1706292087 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 18:01:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

        }
    
        /**
         * Defines a new option. By default, the option takes no arguments and has no description.
         *
         * @param options The options values.
         * @return The option, which can be further configured.
         */
        public CommandLineOption option(String... options) {
            for (String option : options) {
                if (optionsByString.containsKey(option)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/policy_options_test.go

    	testCases := []optionAvailTest{
    		{
    			option:            "this-option-does-not-exist",
    			expectedAvailable: false,
    		},
    		{
    			option:            PreferClosestNUMANodes,
    			expectedAvailable: true,
    		},
    	}
    	for _, testCase := range testCases {
    		t.Run(testCase.option, func(t *testing.T) {
    			err := CheckPolicyOptionAvailable(testCase.option)
    			isEnabled := (err == nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/BuildOptionFixture.groovy

        static void assertNoArguments(CommandLineOption option) {
            assert !option.allowsArguments
            assert !option.allowsMultipleArguments
        }
    
        static void assertSingleArgument(CommandLineOption option) {
            assert option.allowsArguments
            assert !option.allowsMultipleArguments
        }
    
        static void assertMultipleArgument(CommandLineOption option) {
            assert option.allowsArguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    The absence of the option uses the default value of the property.
    For each boolean option, an opposite option is created automatically.
    For example, `--no-foo` is created for the provided option `--foo` and `--bar` is created for `--no-bar`.
    Options whose name starts with `--no` are disabled options and set the option value to `false`.
    An opposite option is only created if no option with the same name already exists for the task.
    
    `Double`, `Property<Double>`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithAnEmptyProject/expectedFiles/root.ipr.xml

      <component name="JavadocGenerationManager">
        <option name="OUTPUT_DIRECTORY"/>
        <option name="OPTION_SCOPE" value="protected"/>
        <option name="OPTION_HIERARCHY" value="true"/>
        <option name="OPTION_NAVIGATOR" value="true"/>
        <option name="OPTION_INDEX" value="true"/>
        <option name="OPTION_SEPARATE_INDEX" value="true"/>
        <option name="OPTION_DOCUMENT_TAG_USE" value="false"/>
        <option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/OptionReader.java

                Option option = findOption(field);
                if (option != null) {
                    fieldOptionElements.add(FieldOptionElement.create(option, field, optionValueNotationParserFactory));
                }
            }
            return fieldOptionElements;
        }
    
        private Option findOption(Field field) {
            Option option = field.getAnnotation(Option.class);
            if (option != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 09:51:34 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. .idea/runConfigurations/Analysis_API_FIR_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-fir:test" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 13:39:42 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top