Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,652 for Option (0.14 sec)

  1. cmd/kube-scheduler/app/server.go

    	utilruntime.Must(features.AddFeatureGates(utilfeature.DefaultMutableFeatureGate))
    }
    
    // Option configures a framework.Registry.
    type Option func(runtime.Registry) error
    
    // NewSchedulerCommand creates a *cobra.Command object with default parameters and registryOptions
    func NewSchedulerCommand(registryOptions ...Option) *cobra.Command {
    	opts := options.NewOptions()
    
    	cmd := &cobra.Command{
    		Use: "kube-scheduler",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. tests/integration/ambient/wasm_test.go

    			Path:   "/path",
    			Method: "GET",
    		},
    		Count: 1,
    		Retry: echo.Retry{
    			Options: append(defaultOptions, options...),
    		},
    		Check: checker,
    	}
    
    	_ = cltInstance.CallOrFail(ctx, httpOpts)
    }
    
    func sendTrafficToHostname(ctx framework.TestContext, checker echo.Checker, hostname string, options ...retry.Option) {
    	ctx.Helper()
    	if len(GetClientInstances()) == 0 {
    		ctx.Fatal("there is no client")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            outputContains("result = a")
    
            where:
            richConsole << VALID_BOOLEAN_CHOICES
        }
    
        def "use of ctrl-d when selection option returns default option [rich console: #richConsole]"() {
            given:
            withRichConsole(richConsole)
    
            when:
            runWithInterruptedInput("selectOption")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnumBuildOption.java

            }
        }
    
        @Override
        public void applyFromCommandLine(ParsedCommandLine options, T settings) {
            for (CommandLineOptionConfiguration config : commandLineOptionConfigurations) {
                if (options.hasOption(config.getLongOption())) {
                    String value = options.option(config.getLongOption()).getValue();
                    applyTo(value, settings, Origin.forCommandLine(config.getLongOption()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. subprojects/composite-builds/build.gradle.kts

        testImplementation(project(":file-watching"))
        testImplementation(project(":build-option"))
        testImplementation(testFixtures(project(":build-operations")))
        testImplementation(testFixtures(project(":dependency-management")))
        testImplementation(testFixtures(project(":core")))
    
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":launcher"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

                         swift-library
    
         --use-defaults     Use default values for options not configured explicitly
    
         --no-use-defaults     Disables option --use-defaults.
    
         --rerun     Causes the task to be re-run even if up-to-date.
    
    Description""") // include the next header to make sure all options are listed
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    [[sec:disambiguate_task_options_from_built_in_options]]
    === Specify options for tasks
    To pass an option to a task, prefix the option name with `--` after the task name:
    
    ----
    $ gradle exampleTask --exampleOption=exampleValue
    ----
    
    ==== Disambiguate task options from built-in options
    Gradle does not prevent tasks from registering options that conflict with Gradle's built-in options, like `--profile` or `--help`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractDependencyReportTask.java

        }
    
        /**
         * Sets the single configuration (by name) to generate the report for.
         *
         * @param configurationName name of the configuration to generate the report for
         */
        @Option(option = "configuration", description = "The configuration to generate the report for.")
        public void setConfiguration(String configurationName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

            when:
            succeeds "run"
    
            then:
            outputContains("Hello World!")
    
            where:
            description            | option | property
            "option"               | false  | null
            "property"             | null   | false
            "option over property" | false  | true
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

         * Due to internal limitations, this option only works when the {@link #getConfiguration() configuration} is
         * unresolved before the execution of this task.
         * </p>
         *
         * <p>
         * This method is exposed to the command line interface. Example usage:
         * <pre>gradle dependencyInsight --all-variants</pre>
         *
         * @since 7.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top