Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 413 for additional (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. build/root/Makefile

    #     "ginkgo" is an alias for the ginkgo CLI.
    #   GOFLAGS: Extra flags to pass to 'go' when building.
    #   GOLDFLAGS: Extra linking flags passed to 'go' when building.
    #   GOGCFLAGS: Additional go compile flags passed to 'go' when building.
    #   DBG: If set to "1", build with optimizations disabled for easier
    #     debugging.  Any other value is ignored.
    #
    # Example:
    #   make
    #   make all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/extensions.kt

            "-Dorg.gradle.workers.max=$maxParallelForks",
            "-PmaxParallelForks=$maxParallelForks",
            pluginPortalUrlOverride,
            "-s",
            "--no-configuration-cache",
            "%additional.gradle.parameters%",
            if (daemon) "--daemon" else "--no-daemon",
            if (isContinue) "--continue" else ""
        )
    
    fun Dependencies.dependsOn(buildTypeId: RelativeId) {
        dependency(buildTypeId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
Back to top