Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 704 for equality (0.13 sec)

  1. src/crypto/ecdh/nist.go

    // P256 returns a [Curve] which implements NIST P-256 (FIPS 186-3, section D.2.3),
    // also known as secp256r1 or prime256v1.
    //
    // Multiple invocations of this function will return the same value, which can
    // be used for equality checks and switch statements.
    func P256() Curve { return p256 }
    
    var p256 = &nistCurve[*nistec.P256Point]{
    	name:        "P-256",
    	newPoint:    nistec.NewP256Point,
    	scalarOrder: p256Order,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/crypto/elliptic/elliptic.go

    // also known as secp224r1. The CurveParams.Name of this [Curve] is "P-224".
    //
    // Multiple invocations of this function will return the same value, so it can
    // be used for equality checks and switch statements.
    //
    // The cryptographic operations are implemented using constant-time algorithms.
    func P224() Curve {
    	initonce.Do(initAll)
    	return p224
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/WbResourceTest.groovy

            when:
            createWbResource().appendNode(rootNode)
    
            then:
            new WbResource(rootNode.'wb-resource'[0]) == createWbResource()
        }
    
        def equality() {
            WbResource wbResource = createWbResource()
            wbResource.sourcePath += 'x'
    
            expect:
            wbResource != createWbResource()
        }
    
        private WbResource createWbResource() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/NoInputsRuleActionTest.groovy

        }
    
        def "rule action has no inputs"() {
            when:
            def action = ruleAction({ String val -> } as Action<String>)
    
            then:
            action.inputTypes.empty
        }
    
        def "equality"() {
            def baseAction = {String val -> } as Action<String>
            def noInputsAction = ruleAction(baseAction)
    
            expect:
            Matchers.strictlyEquals(noInputsAction, ruleAction(baseAction))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectDependencyTest.groovy

            when:
            createProjectDependency().appendNode(rootNode)
    
            then:
            new ProjectDependency(rootNode.classpathentry[0]) == createProjectDependency()
        }
    
        def equality() {
            ProjectDependency projectDependency = createProjectDependency()
            projectDependency.nativeLibraryLocation += 'x'
    
            expect:
            projectDependency != createProjectDependency()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/WbDependentModuleTest.groovy

            when:
            createWbDependentModule().appendNode(rootNode)
    
            then:
            new WbDependentModule(rootNode.'dependent-module'[0]) == createWbDependentModule()
        }
    
        def equality() {
            WbDependentModule wbDependentModule = createWbDependentModule()
            wbDependentModule.handle += 'x'
    
            expect:
            wbDependentModule != createWbDependentModule()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/FacetTest.groovy

            Node rootNode = new Node(null, 'root')
    
            when:
            createFixedFacet().appendNode(rootNode)
    
            then:
            new Facet(rootNode.fixed[0]) == createFixedFacet()
        }
    
        def equality() {
            Facet facet = createFacet()
            facet.name += 'x'
    
            expect:
            facet != createFacet()
        }
    
        def fixedEquality() {
            Facet facet = createFixedFacet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/dispatch/MethodInvocationTest.groovy

    import spock.lang.Specification
    
    import static org.gradle.util.Matchers.strictlyEqual
    import static org.hamcrest.MatcherAssert.assertThat
    
    class MethodInvocationTest extends Specification {
    
        def "equality"() {
            def invocation = new MethodInvocation(String.class.getMethod("length"), ["param"] as Object[])
            def equalInvocation = new MethodInvocation(String.class.getMethod("length"), ["param"] as Object[])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleLibraryTest.groovy

     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model
    
    import spock.lang.Specification
    
    class ModuleLibraryTest extends Specification {
        def equality() {
            expect:
            createModuleLibraryWithScope(null).equals(createModuleLibraryWithScope("COMPILE"))
            createModuleLibraryWithScope("").equals(createModuleLibraryWithScope("COMPILE"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    			// Since we've encountered an unknown field, fallback to unstructured equality checking.
    			ouMap, ok := other.(*unstructuredMap)
    			if !ok {
    				// The compiler ensures equality is against the same type of object, so this should be unreachable
    				return types.MaybeNoSuchOverloadErr(other)
    			}
    			if oValue, ok := ouMap.value[key]; ok {
    				if !equality.Semantic.DeepEqual(value, oValue) {
    					return types.False
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
Back to top