Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 605 for leastOf (0.14 sec)

  1. docs/en/docs/benchmarks.md

        * Will have the best performance, as it doesn't have much extra code apart from the server itself.
        * You wouldn't write an application in Uvicorn directly. That would mean that your code would have to include more or less, at least, all the code provided by Starlette (or **FastAPI**). And if you did that, your final application would have the same overhead as having used a framework and minimizing your app code and bugs.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

          > Plugin com.example:producer:1.0 requires at least Gradle 1000.0. This build uses Gradle $currentGradle.""")
            failure.assertHasErrorOutput("Caused by: " + VariantSelectionException.class.getName())
            failure.assertHasResolution("Upgrade to at least Gradle 1000.0. See the instructions at https://docs.gradle.org/$currentGradle/userguide/upgrading_version_8.html#sub:updating-gradle.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/crypto/tls/quic.go

    //
    // The config's MinVersion must be at least TLS 1.3.
    func QUICClient(config *QUICConfig) *QUICConn {
    	return newQUICConn(Client(nil, config.TLSConfig), config)
    }
    
    // QUICServer returns a new TLS server side connection using QUICTransport as the
    // underlying transport. The config cannot be nil.
    //
    // The config's MinVersion must be at least TLS 1.3.
    func QUICServer(config *QUICConfig) *QUICConn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/runtime/string.go

    		n, ok := atoi64(s[:len(s)-1])
    		if !ok || n < 0 {
    			return 0, false
    		}
    		return n, ok
    	} else if c != 'i' {
    		return 0, false
    	}
    	// Finally, we need at least 4 characters now, for the unit
    	// prefix and at least one digit.
    	if len(s) < 4 {
    		return 0, false
    	}
    	power := 0
    	switch s[len(s)-3] {
    	case 'K':
    		power = 1
    	case 'M':
    		power = 2
    	case 'G':
    		power = 3
    	case 'T':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation.go

    		allErrors = append(allErrors, field.Required(fldPath.Child("validations"), "validations or auditAnnotations must contain at least one item"))
    		allErrors = append(allErrors, field.Required(fldPath.Child("auditAnnotations"), "validations or auditAnnotations must contain at least one item"))
    	} else {
    		for i, validation := range spec.Validations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. src/net/ipsock.go

    // filterAddrList applies a filter to a list of IP addresses,
    // yielding a list of Addr objects. Known filters are nil, ipv4only,
    // and ipv6only. It returns every address when the filter is nil.
    // The result contains at least one address when error is nil.
    func filterAddrList(filter func(IPAddr) bool, ips []IPAddr, inetaddr func(IPAddr) Addr, originalAddr string) (addrList, error) {
    	var addrs addrList
    	for _, ip := range ips {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	L int   // level in tiling (-1 ≤ L ≤ 63)
    	N int64 // number within level (0 ≤ N, unbounded)
    	W int   // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
    }
    
    // TileForIndex returns the tile of fixed height h ≥ 1
    // and least width storing the given hash storage index.
    //
    // If h ≤ 0, [TileForIndex] panics.
    func TileForIndex(h int, index int64) Tile {
    	if h <= 0 {
    		panic(fmt.Sprintf("TileForIndex: invalid height %d", h))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

         *
         * @param configuration Compiler configuration.
         *  It is recommended to submit at least the module name ([CommonConfigurationKeys.MODULE_NAME])
         *  and language version settings ([CommonConfigurationKeys.LANGUAGE_VERSION_SETTINGS]).
         *
         * @param target Compilation target platform.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types.go

    	// excluded from the requirement check. Possible values are:
    	//
    	// - In: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    	//   by the 'containerName' field) is in the set of specified values.
    	// - NotIn: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	// excluded from the requirement check. Possible values are:
    	//
    	// - In: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    	//   by the 'containerName' field) is in the set of specified values.
    	// - NotIn: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top