Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,867 for Option (0.12 sec)

  1. src/text/template/option.go

    	mapError                             // Error out
    )
    
    type option struct {
    	missingKey missingKeyAction
    }
    
    // Option sets options for the template. Options are described by
    // strings, either a simple string or "key=value". There can be at
    // most one equals sign in an option string. If the option string
    // is unrecognized or otherwise invalid, Option panics.
    //
    // Known options:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/test/framework/resource/config/apply/option.go

    // Option is a strategy for updating Options.
    type Option interface {
    	// Set this option on the provided Options
    	Set(*Options)
    }
    
    // OptionFunc is a function-based Option.
    type OptionFunc func(*Options)
    
    // Set just invokes this function to update the Options.
    func (f OptionFunc) Set(opts *Options) {
    	f(opts)
    }
    
    // NoCleanup is an Option that disables config cleanup.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 02:49:07 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top