Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,957 for Option (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    			knownFormats: formats,
    			options:      options,
    		},
    	}
    }
    
    func (r *RatchetingSchemaValidator) Validate(new interface{}, options ...ValidationOption) *validate.Result {
    	sv := validate.NewSchemaValidator(r.schema, r.root, r.path, r.knownFormats, r.options...)
    	return sv.Validate(new)
    }
    
    func (r *RatchetingSchemaValidator) ValidateUpdate(new, old interface{}, options ...ValidationOption) *validate.Result {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            """
    
            file('src/main/java/Foo.java') << 'public class Foo {}'
    
            when:
            succeeds 'javadoc'
    
            then:
            file('build/docs/javadoc/Foo.html').text.contains("'some text'")
    
            where:
            option << (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_16) ? ['header'] : ['header', 'footer'])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SuggestionsMessages.groovy

        public static final String DEBUG = "Run with --debug option to get more log output."
        public static final String SCAN = "Run with --scan to get full insights."
        public static final String GET_HELP = "Get more help at https://help.gradle.org."
        public static final String STACKTRACE_MESSAGE = "Run with --stacktrace option to get the stack trace."
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Optional;
    import org.gradle.api.tasks.OutputFile;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.api.tasks.options.Option;
    import org.gradle.api.tasks.options.OptionValues;
    import org.gradle.api.tasks.wrapper.internal.DefaultWrapperVersionsResources;
    import org.gradle.api.tasks.wrapper.internal.WrapperDefaults;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.cc

                                        bool skip_partitioned_calls) {
      TFToStablehloOptions options;
      options.skip_quantization_ops = skip_quantization_ops;
      options.skip_resize = skip_resize;
      options.skip_partitioned_calls = skip_partitioned_calls;
      PopulateLegalizeTFToStablehloPipeline(pm, options);
    }
    
    }  // namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOption.java

     */
    
    package org.gradle.internal.buildoption;
    
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    
    import java.util.Map;
    
    /**
     * A build option representing a boolean option with a enabled mode only e.g. {@code "--foreground"}.
     *
     * @since 4.3
     */
    public abstract class EnabledOnlyBooleanBuildOption<T> extends AbstractBuildOption<T, CommandLineOptionConfiguration> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pkg/config/model_test.go

    	}
    }
    
    type TestStruct struct {
    	Name string `json:"name"`
    }
    
    func TestDeepCopyTypes(t *testing.T) {
    	cases := []struct {
    		input  Spec
    		modify func(c Spec) Spec
    		option cmp.Option
    	}{
    		// Istio type
    		{
    			&networking.VirtualService{Gateways: []string{"foo"}},
    			func(c Spec) Spec {
    				c.(*networking.VirtualService).Gateways = []string{"bar"}
    				return c
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top