Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,211 for Option (0.14 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. 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)
  5. 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)
  6. 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)
  7. .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)
  8. .idea/runConfigurations/Analysis_API_Standalone_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-standalone:test" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 13:39:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. .idea/runConfigurations/Decompiled_Stubs_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>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 01 17:29:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. .idea/runConfigurations/Test__Kotlin_Gradle_Plugin.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="--continue" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value=":kotlin-gradle-plugin:check" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 05 14:25:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top