Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for twoargs2 (0.19 sec)

  1. src/crypto/internal/edwards25519/field/fe_alias_test.go

    			},
    		},
    		{name: "Multiply", twoArgsF: (*Element).Multiply},
    		{name: "Add", twoArgsF: (*Element).Add},
    		{name: "Subtract", twoArgsF: (*Element).Subtract},
    		{
    			name: "SqrtRatio",
    			twoArgsF: func(v, x, y *Element) *Element {
    				r, _ := v.SqrtRatio(x, y)
    				return r
    			},
    		},
    		{
    			name: "Select0",
    			twoArgsF: func(v, x, y *Element) *Element {
    				return v.Select(x, y, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/rule/describe/MethodModelRuleDescriptorTest.groovy

            sb.toString() == ModelType.of(getClass()).displayName + "#" + desc
    
            where:
            method        | desc
            "noArgs"      | 'noArgs()'
            "oneArg"      | 'oneArg(String)'
            "twoArgs"     | 'twoArgs(String, String)'
            "genericArgs" | 'genericArgs(List<String>, Map<Integer, List<String>>)'
        }
    
        def "inner classes are described"() {
            when:
            def sb = new StringBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/go/types/instantiate_test.go

    func TestInstantiateEquality(t *testing.T) {
    	emptySignature := NewSignatureType(nil, nil, nil, nil, nil, false)
    	tests := []struct {
    		src       string
    		name1     string
    		targs1    []Type
    		name2     string
    		targs2    []Type
    		wantEqual bool
    	}{
    		{
    			"package basictype; type T[P any] int",
    			"T", []Type{Typ[Int]},
    			"T", []Type{Typ[Int]},
    			true,
    		},
    		{
    			"package differenttypeargs; type T[P any] int",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/instantiate_test.go

    func TestInstantiateEquality(t *testing.T) {
    	emptySignature := NewSignatureType(nil, nil, nil, nil, nil, false)
    	tests := []struct {
    		src       string
    		name1     string
    		targs1    []Type
    		name2     string
    		targs2    []Type
    		wantEqual bool
    	}{
    		{
    			"package basictype; type T[P any] int",
    			"T", []Type{Typ[Int]},
    			"T", []Type{Typ[Int]},
    			true,
    		},
    		{
    			"package differenttypeargs; type T[P any] int",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top