Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,179 for Defaults (0.52 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InterfaceBackedManagedTypeIntegrationTest.groovy

        }
    
        def "non-abstract setters implemented as default interface methods are not allowed"() {
            when:
            file('buildSrc/src/main/java/Rules.java') << '''
                import org.gradle.api.*;
                import org.gradle.model.*;
    
                @Managed
                interface Person {
                    String getName();
                    default void setName(String firstName) {
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

                         scala-library
                         swift-application
                         swift-library
    
         --use-defaults     Use default values for options not configured explicitly
    
         --no-use-defaults     Disables option --use-defaults.
    
         --rerun     Causes the task to be re-run even if up-to-date.
    
    Description""") // include the next header to make sure all options are listed
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top