Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 6,867 for Option (0.12 sec)

  1. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/NonInteractiveUserInputHandlerTest.groovy

            expect:
            userInputHandler.selectOption('Select count', [1, 2, 3], 2) == 2
        }
    
        def "returns first option when no default"() {
            expect:
            userInputHandler.choice('Select count', [1, 2, 3])
                .ask() == 1
        }
    
        def "returns default option for choice"() {
            expect:
            userInputHandler.choice('Select count', [1, 2, 3])
                .defaultOption(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. releasenotes/notes/24737.yaml

    issue:
      - 11130
    
    releaseNotes:
    - |
      **Added** config option `values.global.proxy.holdApplicationUntilProxyStarts`,
      which causes the sidecar injector to inject the sidecar at the start of the
      pod's container list and configures it to block the start of all other
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 471 bytes
    - Viewed (0)
  3. migrator/index.go

    }
    
    // Unique returns whether the index is unique or not.
    func (idx Index) Unique() (unique bool, ok bool) {
    	return idx.UniqueValue.Bool, idx.UniqueValue.Valid
    }
    
    // Option return the optional attribute of the index
    func (idx Index) Option() string {
    	return idx.OptionValue
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:32:46 UTC 2023
    - 1023 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/finalizersWithFailure/tests-groovy/taskFinalizersWithFailureGroovy.out

    * What went wrong:
    Execution failed for task ':taskX'.
    > java.lang.RuntimeException (no error message)
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 455 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    If the `--incubating` option is provided, Gradle will generate build scripts which may use the latest versions of APIs, which are marked `@Incubating` and remain <<feature_lifecycle.adoc#feature_lifecycle,subject to change>>. To disable this behavior, use `--no-incubating`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. Development.md

    If an exception implements this interface, Gradle will not display the `--stacktrace` option.
    
    Another more targeted interface is `CompilationFailedIndicator`.
    This interface is used to indicate that the exception is caused by a compilation failure. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CodeNarcInvoker.groovy

                            report(type: 'ide') {
                                option(name: 'writeToStandardOut', value: true)
                            }
                        } else if (r.name.get() == 'html') {
                            report(type: 'sortable') {
                                option(name: 'outputFile', value: r.outputLocation.asFile.get())
                            }
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 14:00:06 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    	Neutral
    )
    
    type options struct {
    	defaultDirection Direction
    }
    
    // An Option is an option for Bidi processing.
    type Option func(*options)
    
    // ICU allows the user to define embedding levels. This may be used, for example,
    // to use hierarchical structure of markup languages to define embeddings.
    // The following option may be a way to expose this functionality in this API.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

                    case EXPLICIT_TRUE:
                        return Option.Value.value(true);
                    case EXPLICIT_FALSE:
                        return Option.Value.value(false);
                    case IMPLICIT_TRUE:
                        return Option.Value.defaultValue(true);
                    case IMPLICIT_FALSE:
                        return Option.Value.defaultValue(false);
                    default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/buildlifecycle/taskExecutionEvents/tests-kotlin/taskExecutionEvents.kotlin.out

    done
    executing task ':broken' ...
    FAILED
    
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':broken'.
    > broken
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 401 bytes
    - Viewed (0)
Back to top