Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,261 for Defaults (0.14 sec)

  1. common-protos/k8s.io/api/batch/v1/generated.proto

      // not apply to already started executions.  Defaults to false.
      // +optional
      optional bool suspend = 4;
    
      // Specifies the job that will be created when executing a CronJob.
      optional JobTemplateSpec jobTemplate = 5;
    
      // The number of successful finished jobs to retain. Value must be non-negative integer.
      // Defaults to 3.
      // +optional
      optional int32 successfulJobsHistoryLimit = 6;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// When set to true, API requests to this version receive a warning header in the server response.
    	// Defaults to false.
    	Deprecated bool
    	// deprecationWarning overrides the default warning returned to API clients.
    	// May only be set when `deprecated` is true.
    	// The default warning indicates this version is deprecated and recommends use
    	// of the newest served version of equal or greater stability, if one exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/testflag.go

    		}
    	})
    
    	// 'go test' has a default timeout, but the test binary itself does not.
    	// If the timeout wasn't set (and forwarded) explicitly, add the default
    	// timeout to the command line.
    	if testTimeout > 0 && !timeoutSet {
    		injectedFlags = append(injectedFlags, fmt.Sprintf("-test.timeout=%v", testTimeout))
    	}
    
    	// Similarly, the test binary defaults -test.outputdir to its own working
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	Marshal() ([]byte, error)
    
    	// Unmarshal loads the config from a document map. No config in the document map is no error.
    	Unmarshal(docmap DocumentMap) error
    
    	// Default patches the component config with kubeadm preferred defaults
    	Default(cfg *ClusterConfiguration, localAPIEndpoint *APIEndpoint, nodeRegOpts *NodeRegistrationOptions)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/response-model.md

    * `tax: float = 10.5` has a default of `10.5`.
    * `tags: List[str] = []` has a default of an empty list: `[]`.
    
    but you might want to omit them from the result if they were not actually stored.
    
    For example, if you have models with many optional attributes in a NoSQL database, but you don't want to send very long JSON responses full of default values.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/config.go

    	cmd := &cobra.Command{
    		Use:   fmt.Sprintf("%s-defaults", action),
    		Short: fmt.Sprintf("Print default %s configuration, that can be used for 'kubeadm %s'", action, action),
    		Long: fmt.Sprintf(dedent.Dedent(`
    			This command prints objects such as the default %s configuration that is used for 'kubeadm %s'.
    
    			Note that sensitive values like the Bootstrap Token fields are replaced with placeholder values like %q in order to pass validation but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/crypto/tls/tls.go

    			return fail(errors.New("tls: private key does not match public key"))
    		}
    	default:
    		return fail(errors.New("tls: unknown public key algorithm"))
    	}
    
    	return cert, nil
    }
    
    // Attempt to parse the given private key DER block. OpenSSL 0.9.8 generates
    // PKCS #1 private keys by default, while OpenSSL 1.0.0 generates PKCS #8 keys.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      optional string format = 6;
    
      optional string title = 7;
    
      // default is a default value for undefined object fields.
      // Defaulting is a beta feature under the CustomResourceDefaulting feature gate.
      // CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API.
      optional JSON default = 8;
    
      optional double maximum = 9;
    
      optional bool exclusiveMaximum = 10;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         */
        @Internal
        @Incubating
        public String getThreadPoolFactoryClass() {
            return threadPoolFactoryClass;
        }
    
        /**
         * Whether the default listeners and reporters should be used. Since Gradle 1.4 it defaults to 'false' so that Gradle can own the reports generation and provide various improvements. This option
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/flag/flag_test.go

        	disable bounds checking
      -C	a boolean defaulting to true (default true)
      -D path
        	set relative path for local imports
      -E string
        	issue 23543 (default "0")
      -F number
        	a non-zero number (default 2.7)
      -G float
        	a float that defaults to zero
      -M string
        	a multiline
        	help
        	string
      -N int
        	a non-zero int (default 27)
      -O	a flag
        	multiline help string (default true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top