Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 599 for Avery (0.07 sec)

  1. src/cmd/compile/internal/types2/api.go

    //
    // Constant folding computes the exact constant value (constant.Value)
    // for every expression (syntax.Expr) that is a compile-time constant.
    // Use Info.Types[expr].Value for the results of constant folding.
    //
    // Type inference computes the type (Type) of every expression (syntax.Expr)
    // and checks for compliance with the language specification.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ArrayTable.java

     * it requires that the complete universe of rows and columns be specified at construction time.
     * Second, it is always backed by an array large enough to hold a value for every possible
     * combination of row and column keys. (This is rarely optimal unless the table is extremely dense.)
     * Finally, every possible combination of row and column keys is always considered to have a value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat.go

    	return rr
    }
    
    // minusInverseModW computes -x⁻¹ mod _W with x odd.
    //
    // This operation is used to precompute a constant involved in Montgomery
    // multiplication.
    func minusInverseModW(x uint) uint {
    	// Every iteration of this loop doubles the least-significant bits of
    	// correct inverse in y. The first three bits are already correct (1⁻¹ = 1,
    	// 3⁻¹ = 3, 5⁻¹ = 5, and 7⁻¹ = 7 mod 8), so doubling five times is enough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/go/types/api.go

    //
    // Constant folding computes the exact constant value
    // ([constant.Value]) of every expression ([ast.Expr]) that is a
    // compile-time constant. Use the Types field of [Info] to find the
    // results of constant folding for an expression.
    //
    // Type deduction computes the type ([Type]) of every expression
    // ([ast.Expr]) and checks for compliance with the language
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/runtime/mgcsweep.go

    		// also inefficient to call into the scheduler so much because sweeping a
    		// single span is in general a very fast operation, taking as little as 30 ns
    		// on modern hardware. (See #54767.)
    		//
    		// As a result, bgsweep sweeps in batches, and only calls into the scheduler
    		// at the end of every batch. Furthermore, it only yields its time if there
    		// isn't spare idle time available on other cores. If there's available idle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. plugin/pkg/admission/serviceaccount/admission.go

    	}
    
    	// Create the prototypical VolumeMount
    	volumeMount := api.VolumeMount{
    		Name:      tokenVolumeName,
    		ReadOnly:  true,
    		MountPath: DefaultAPITokenMountPath,
    	}
    
    	// Ensure every container mounts the APISecret volume
    	needsTokenVolume := false
    	for i, container := range pod.Spec.InitContainers {
    		existingContainerMount := false
    		for _, volumeMount := range container.VolumeMounts {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            and:
            final mainSolution = solutionFile("app.sln")
            mainSolution.assertHasProjects()
        }
    
        @ToBeFixedForConfigurationCache
        def "includes a visual studio project for every project with a C++ component"() {
            when:
            createDirs("one", "two", "three")
            settingsFile << """
                rootProject.name = 'app'
                include 'one', 'two', 'three'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                it.requestedAttributes.find { it.name == 'org.gradle.dependency.bundling' }.value == 'external'
                it.requestedAttributes.find { it.name == 'org.gradle.jvm.version' }.value
            }
            operations.all(ResolveConfigurationDependenciesBuildOperationType, { it.details.configurationName.endsWith('CompileClasspath') }).result.every {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    If your PR includes any changes to the Gradle Public API, it will cause the binary compatibility check to fail.
    The binary compatibility check runs as a part of the broader sanity check.
    The latter runs on every PR and is a prerequisite for merging.
    
    If you run the sanity check locally with the `./gradlew sanityCheck`, you can see the binary compatibility error in the output.
    It looks like the following:
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/response-model.md

    In this case, it might not be a problem, because it's the same user sending the password.
    
    But if we use the same model for another *path operation*, we could be sending our user's passwords to every client.
    
    !!! danger
        Never store the plain password of a user or send it in a response like this, unless you know all the caveats and you know what you are doing.
    
    ## Add an output model
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top