Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,233 for OptionS (0.15 sec)

  1. platforms/core-runtime/cli/src/main/java/org/gradle/cli/ParsedCommandLine.java

         *
         * @param option The option, without the '-' or '--' prefix.
         * @return true if the option was present.
         */
        public boolean hadOptionRemoved(String option) {
            option(option);
            return removedOptions.contains(option);
        }
    
        /**
         * See also {@link #hasOption}.
         *
         * @param logLevelOptions the options to check
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/validation_test.go

    		t.Run(test.runtimeConfig, func(t *testing.T) {
    			options := &Options{
    				Features: &genericoptions.FeatureOptions{
    					EnablePriorityAndFairness: true,
    				},
    				APIEnablement: genericoptions.NewAPIEnablementOptions(),
    			}
    			options.APIEnablement.RuntimeConfig.Set(test.runtimeConfig)
    
    			var errMessageGot string
    			if errs := validateAPIPriorityAndFairness(options); len(errs) > 0 {
    				errMessageGot = errs[0].Error()
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. docs/en/docs/reference/responses.md

        options:
            members:
                - chunk_size
                - charset
                - status_code
                - media_type
                - body
                - background
                - raw_headers
                - render
                - init_headers
                - headers
                - set_cookie
                - delete_cookie
    
    ::: fastapi.responses.HTMLResponse
        options:
            members:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

         *
         * @param source the source to parse, never {@code null}
         * @param options possible parsing options, may be {@code null}
         * @return the parsed {@link Model}, never {@code null}
         * @throws ModelParserException if the model cannot be parsed
         */
        @Nonnull
        Model parse(@Nonnull Source source, @Nullable Map<String, ?> options) throws ModelParserException;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/admission_test.go

    	options.PluginNames = []string{"pluginA"}
    	if len(options.Validate()) == 0 {
    		t.Errorf("Expect error, but got none")
    	}
    
    	// 4. PluginNames is not valid
    	options = NewAdmissionOptions()
    	options.PluginNames = []string{"ServiceAccount"}
    	if errs := options.Validate(); len(errs) > 0 {
    		t.Errorf("Unexpected err: %v", errs)
    	}
    
    	// nil pointer
    	options = nil
    	if errs := options.Validate(); errs != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 01:51:35 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. test/typeparam/issue48185b.dir/a.go

    package a
    
    import (
    	"reflect"
    	"sync"
    )
    
    type addressableValue struct{ reflect.Value }
    
    type arshalers[Options, Coder any] struct {
    	fncVals  []typedArshaler[Options, Coder]
    	fncCache sync.Map // map[reflect.Type]unmarshaler
    }
    type typedArshaler[Options, Coder any] struct {
    	typ reflect.Type
    	fnc func(Options, *Coder, addressableValue) error
    }
    
    type UnmarshalOptions1 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 07 20:37:05 UTC 2021
    - 1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/delete.go

    	if !gracefulStrategy.CheckGracefulDelete(ctx, obj, options) {
    		return false, false, nil
    	}
    
    	if options.GracePeriodSeconds == nil {
    		return false, false, errors.NewInternalError(fmt.Errorf("options.GracePeriodSeconds should not be nil"))
    	}
    
    	now := metav1.NewTime(metav1.Now().Add(time.Second * time.Duration(*options.GracePeriodSeconds)))
    	objectMeta.SetDeletionTimestamp(&now)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 07 17:43:41 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/pjrt_base_device.cc

                                   const Options& options)
        : LocalDevice(session_options,
                      BuildPjRtBaseDeviceAttributes(options.device_name_prefix,
                                                    options.device_name,
                                                    options.device_ordinal)),
          metadata_(DeviceType(options.compilation_device_name),
                    options.shape_determination_fns) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    To learn how to declare command-line options for your own tasks, see <<custom_tasks.adoc#sec:declaring_and_using_command_line_options,Declaring and Using Command Line Options>>.
    
    [[sec:builtin_task_options]]
    === Built-in task options
    Built-in task options are options available as task options for all tasks. At this time, the following built-in task options exist:
    
    `--rerun`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/reset_test.go

    		data        *resetData
    	}{
    		{
    			name: "flags parsed correctly",
    			flags: map[string]string{
    				options.CertificatesDir:       "/tmp",
    				options.NodeCRISocket:         constants.CRISocketCRIO,
    				options.IgnorePreflightErrors: "all",
    				options.ForceReset:            "true",
    				options.DryRun:                "true",
    				options.CleanupTmpDir:         "true",
    			},
    			data: &resetData{
    				certificatesDir:       "/tmp",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 13:42:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top