Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,257 for optionA (0.31 sec)

  1. cluster/images/etcd/migrate/options.go

    Humble Chirammal <******@****.***> 1717149052 +0530
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/TaskOptionsSpec.groovy

        def "passes task options associated with a task originating from buildSrc"() {
            when:
            file('buildSrc/src/main/java/MyTask.java') << """
                import org.gradle.api.DefaultTask;
                import org.gradle.api.tasks.TaskAction;
                import org.gradle.api.provider.Property;
                import org.gradle.api.tasks.options.Option;
                import org.gradle.api.tasks.Optional;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/options.go

    Ben Leggett <******@****.***> 1715982749 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/regexp/example_test.go

    	}
    	fmt.Println(string(result))
    	// Output:
    	// option1=value1
    	// option2=value2
    	// option3=value3
    }
    
    func ExampleRegexp_ExpandString() {
    	content := `
    	# comment line
    	option1: value1
    	option2: value2
    
    	# another comment line
    	option3: value3
    `
    
    	// Regex pattern captures "key: value" pair from the content.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Optional.java

     */
    @DoNotMock("Use Optional.of(value) or Optional.absent()")
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    public abstract class Optional<T> implements Serializable {
      /**
       * Returns an {@code Optional} instance with no contained reference.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> this method is equivalent to Java 8's
       * {@code Optional.empty}.
       */
      public static <T> Optional<T> absent() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        /** This option is deprecated and may be repurposed as Java debug in a future version.
         * Use {@code -X/--verbose} instead. */
        @Deprecated
        public static final String DEBUG = "debug";
    
        protected Options options;
    
        @SuppressWarnings("checkstyle:linelength")
        public CLIManager() {
            options = new Options();
            options.addOption(Option.builder(Character.toString(HELP))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        public abstract Property<Boolean> getUseDefaults();
    
        /**
        * Should we allow existing files in the build directory to be overwritten?
        *
        * This property can be set via command-line option '--overwrite'. Defaults to false.
        *
        * @since 8.9
        */
        @Incubating
        @Input
        @Optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppCompilerArgsTransformerTest.groovy

        def transformer = new VisualCppCompilerArgsTransformer<NativeCompileSpec>() {
            @Override
            protected Optional<String> getLanguageOption() {
                return Optional.of("/GRADLE_DSL")
            }
        }
    
        def "includes options when debug and optimized enabled"() {
            def spec = Stub(NativeCompileSpec)
            spec.debuggable >> debug
            spec.optimized >> optimize
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. cmd/object-api-options.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DaemonForkOptionsBuilder.java

            "-p", "--module-path", "--upgrade-module-path", "--patch-module"
        );
        // These options allow you to use : instead of a space to separate the
        // option from the value
        private static final List<String> UNRELIABLE_OPTION_PREFIXES = Arrays.asList(
            // bootclasspath can also end with /a or /p
            "-Xbootclasspath",
            // Defining a java agent
            "-javaagent",
            "-agentpath"
        );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top