Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 763 for additional (0.15 sec)

  1. docs/en/docs/tutorial/query-params-str-validations.md

    # Query Parameters and String Validations
    
    **FastAPI** allows you to declare additional information and validation for your parameters.
    
    Let's take this application as example:
    
    === "Python 3.10+"
    
        ```Python hl_lines="7"
        {!> ../../../docs_src/query_params_str_validations/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="9"
        {!> ../../../docs_src/query_params_str_validations/tutorial001.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/crypto/cipher/gcm.go

    	Seal(dst, nonce, plaintext, additionalData []byte) []byte
    
    	// Open decrypts and authenticates ciphertext, authenticates the
    	// additional data and, if successful, appends the resulting plaintext
    	// to dst, returning the updated slice. The nonce must be NonceSize()
    	// bytes long and both it and the additional data must match the
    	// value passed to Seal.
    	//
    	// To reuse ciphertext's storage for the decrypted output, use ciphertext[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    Note that a daemon is compatible if it has additional JVM arguments beyond those requested (except for those treated especially, such as heap settings, assertions, debug, etc.).
    
    system properties::
    A daemon is considered compatible if it has set all the system properties requested with the same values. +
    Note that a daemon is compatible if it has additional system properties beyond those requested.
    
    environment variables::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. src/unicode/utf8/utf8.go

    	n := len(p)
    	if n < 1 {
    		return RuneError, 0
    	}
    	p0 := p[0]
    	x := first[p0]
    	if x >= as {
    		// The following code simulates an additional check for x == xx and
    		// handling the ASCII and invalid cases accordingly. This mask-and-or
    		// approach prevents an additional branch.
    		mask := rune(x) << 31 >> 31 // Create 0x0000 or 0xFFFF.
    		return rune(p[0])&^mask | RuneError&mask, 1
    	}
    	sz := int(x & 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

     * definition of reduced distributions (e.g. a Core distribution without Native plugins)
     * to be used for testing.
     *
     * Other projects may depend on distributions using on their test runtime classpath
     * or as additional test data (see DistributionTest).
     */
    plugins {
        id("gradlebuild.module-identity")
        id("gradlebuild.instrumentation-metadata")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

        @Override
        public ClassPath transform(ClassPath classPath, ClassTransform additional) {
            if (classPath.isEmpty()) {
                return classPath;
            }
            return transformFiles(
                classPath,
                instrumentingClasspathFileTransformerFor(
                    classpathElementTransformFactoryForLegacy,
                    additional
                )
            );
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            then:
            nonJarLibEntries.isEmpty()
        }
    
        def "no additional jars are added to the distribution"() {
            when:
            def jarLibEntries = libZipEntries.findAll { it.name.endsWith(".jar") }
    
            then:
            //ME: This is not a foolproof way of checking that additional jars have not been accidentally added to the distribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation_test.go

    	type tct struct {
    		name    string
    		schema  Structural
    		options ValidationOptions
    		error   string
    	}
    
    	testCases := []tct{
    		{
    			name: "allowed properties valuevalidation, additional properties structure",
    			schema: Structural{
    				AdditionalProperties: &StructuralOrBool{
    					Structural: &Structural{
    						Generic: Generic{
    							Type: "object",
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            pingRequestCount == 3 || pingRequestCount == 4
            timer.elapsedMillis > 3000 // See: DefaultFileLockContentionHandler.PING_DELAY
        }
    
        def "the lock holder starts the release request only once and discards additional requests in the meantime"() {
            given:
            def requestReceived = false
            def terminate = false
            setupLockOwner {
                requestReceived = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. samples/extauthz/cmd/extauthz/main.go

    	checkHeader       = "x-ext-authz"
    	allowedValue      = "allow"
    	resultHeader      = "x-ext-authz-check-result"
    	receivedHeader    = "x-ext-authz-check-received"
    	overrideHeader    = "x-ext-authz-additional-header-override"
    	overrideGRPCValue = "grpc-additional-header-override-value"
    	resultAllowed     = "allowed"
    	resultDenied      = "denied"
    )
    
    var (
    	serviceAccount = flag.String("allow_service_account", "a",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top