Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for L3 (0.04 sec)

  1. test/typeparam/list2.go

    	l3 = _New[int]()
    	l3.PushBackList(l1)
    	checkList(l3, []interface{}{1, 2, 3})
    	l3.PushBackList(l3)
    	checkList(l3, []interface{}{1, 2, 3, 1, 2, 3})
    
    	l3 = _New[int]()
    	l3.PushFrontList(l1)
    	checkList(l3, []interface{}{1, 2, 3})
    	l3.PushFrontList(l3)
    	checkList(l3, []interface{}{1, 2, 3, 1, 2, 3})
    
    	l3 = _New[int]()
    	l1.PushBackList(l3)
    	checkList(l1, []interface{}{1, 2, 3})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe.go

    	t := m & (v.l0 ^ u.l0)
    	v.l0 ^= t
    	u.l0 ^= t
    	t = m & (v.l1 ^ u.l1)
    	v.l1 ^= t
    	u.l1 ^= t
    	t = m & (v.l2 ^ u.l2)
    	v.l2 ^= t
    	u.l2 ^= t
    	t = m & (v.l3 ^ u.l3)
    	v.l3 ^= t
    	u.l3 ^= t
    	t = m & (v.l4 ^ u.l4)
    	v.l4 ^= t
    	u.l4 ^= t
    }
    
    // IsNegative returns 1 if v is negative, and 0 otherwise.
    func (v *Element) IsNegative() int {
    	return int(v.Bytes()[0] & 1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/cluster/cluster_test.go

    							"in-test1",
    						},
    						Labels: map[string]string{
    							"l3": "lv3",
    						},
    						Annotations: map[string]string{
    							"a3": "av3",
    						},
    					},
    					{
    						Namespaces: []string{
    							"test",
    						},
    						Pods: []string{
    							"in-test1",
    						},
    						Labels: map[string]string{
    							"l3": "lv3",
    						},
    						Annotations: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                project.l1.extensions.create("l2", Extension, "l2")
                project.l1.l2.extensions.create("l3", Extension, "l3")
    
                task test {
                    doLast {
                        assert project.l1.name == "l1"
                        assert project.l1.l2.name == "l2"
                        assert project.l1.l2.l3.name == "l3"
                    }
                }
            '''
    
            expect:
            succeeds("test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. src/math/erfc_s390x.s

    	MOVH	$0x3FFF, R3
    	MOVW	R1, R6
    	MOVW	R3, R7
    	CMPBGT	R6, R7, L2
    	MOVH	$0x3FEF, R3
    	MOVW	R3, R7
    	CMPBGT	R6, R7, L3
    	MOVH	$0x2FFF, R2
    	MOVW	R2, R7
    	CMPBGT	R6, R7, L4
    	FMOVD	792(R9), F0
    	WFSDB	V2, V0, V2
    	FMOVD	F2, ret+8(FP)
    	RET
    
    L2:
    	LTDBR	F0, F0
    	MOVH	$0x0, R4
    	BLTU	L3
    	FMOVD	F0, F1
    L9:
    	MOVH	$0x400F, R3
    	MOVW	R1, R6
    	MOVW	R3, R7
    	CMPBGT	R6, R7, L10
    	FMOVD	784(R9), F3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 14.4K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/field/fe_test.go

    // after a light reduction.
    func isInBounds(x *Element) bool {
    	return bits.Len64(x.l0) <= 52 &&
    		bits.Len64(x.l1) <= 52 &&
    		bits.Len64(x.l2) <= 52 &&
    		bits.Len64(x.l3) <= 52 &&
    		bits.Len64(x.l4) <= 52
    }
    
    func TestMultiplyDistributesOverAdd(t *testing.T) {
    	multiplyDistributesOverAdd := func(x, y, z Element) bool {
    		// Compute t1 = (x+y)*z
    		t1 := new(Element)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/context.go

    	// set of networks inside a mesh and how to route to endpoints in each
    	// network. Each network provides information about the endpoints in a
    	// routable L3 network. A single routable L3 network can have one or more
    	// service registries.
    	NetworksWatcher mesh.NetworksWatcher
    
    	NetworkManager *NetworkManager
    
    	// mutex used for protecting Environment.pushContext
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/stmt0.go

    	case 0:
    		if x == 0 {
    			fallthrough /* ERROR "fallthrough statement out of place" */
    		}
    	}
    
    	switch x {
    	case 0:
    		goto L1
    		L1: fallthrough; ;
    	case 1:
    		goto L2
    		goto L3
    		goto L4
    		L2: L3: L4: fallthrough
    	default:
    	}
    
    	switch x {
    	case 0:
    		goto L5
    		L5: fallthrough
    	default:
    		goto L6
    		goto L7
    		goto L8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/math/pow_s390x.s

    	ADDW	$0x4000000, R3
    	BLEU	L5
    	RISBGZ	$40, $63, $56, R3, R3
    	ORW	$0x45000000, R3
    	BR	L2
    L9:
    	WFCEDBS	V0, V0, V4
    	BVS	L35
    	FMOVD	F2, F1
    	BR	L1
    L46:
    	WORD	$0xB3130040	//lcdbr	%f4,%f0
    	BR	L3
    L44:
    	WORD	$0xB3130030	//lcdbr	%f3,%f0
    	BR	L7
    L35:
    	FMOVD	F0, F1
    	BR	L1
    L26:
    	FMOVD	8(R9), F1
    	BR	L1
    L34:
    	FMOVD	8(R9), F4
    L19:
    	LTDBR	F6, F6
    	BLEU	L47
    L18:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case 2:
    		result = "PST"
    	case 3:
    		return fmt.Sprintf("#%#02x", uint8(i))
    	}
    	switch prf_target {
    	case 0:
    		result += "L1"
    	case 1:
    		result += "L2"
    	case 2:
    		result += "L3"
    	case 3:
    		return fmt.Sprintf("#%#02x", uint8(i))
    	}
    	if prf_policy == 0 {
    		result += "KEEP"
    	} else {
    		result += "STRM"
    	}
    	return result
    }
    
    type Pstatefield uint8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top