Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for L1 (0.02 sec)

  1. hack/testdata/null-propagation/deployment-l1.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: my-depl
      labels:
        l1: l1
    spec:
      selector:
        matchLabels:
          l1: l1
      template:
        metadata:
          labels:
            l1: l1
        spec:
          containers:
          - name: nginx
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 278 bytes
    - Viewed (0)
  2. test/fixedbugs/bug179.go

    package main
    
    func main() {
    L:
    	for {
    		for {
    			break L2    // ERROR "L2"
    			continue L2 // ERROR "L2"
    		}
    	}
    
    L1:
    	x := 1
    	_ = x
    	for {
    		break L1    // ERROR "L1"
    		continue L1 // ERROR "L1"
    	}
    
    	goto L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 383 bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe.go

    	c := (v.l0 + 19) >> 51
    	c = (v.l1 + c) >> 51
    	c = (v.l2 + c) >> 51
    	c = (v.l3 + c) >> 51
    	c = (v.l4 + c) >> 51
    
    	// If v < 2^255 - 19 and c = 0, this will be a no-op. Otherwise, it's
    	// effectively applying the reduction identity to the carry.
    	v.l0 += 19 * c
    
    	v.l1 += v.l0 >> 51
    	v.l0 = v.l0 & maskLow51Bits
    	v.l2 += v.l1 >> 51
    	v.l1 = v.l1 & maskLow51Bits
    	v.l3 += v.l2 >> 51
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/labels.go

    	}
    
    	for {
    		if x == 19 {
    			break L1 /* ERROR "invalid break label L1" */
    		}
    		if x == 20 {
    			continue L1 /* ERROR "invalid continue label L1" */
    		}
    		if x == 21 {
    			goto L1
    		}
    	}
    }
    
    // Additional tests not in the original files.
    
    func f2() {
    L1 /* ERROR "label L1 declared and not used" */ :
    	if x == 0 {
    		for {
    			continue L1 /* ERROR "invalid continue label L1" */
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/crypto/internal/edwards25519/field/fe_generic.go

    	// r2 = l0×l2 + l1×l1 + l2×l0 + 19×(l3×l4 + l4×l3) = 2×l0×l2 + l1×l1 + 19×2×l3×l4
    	r2 := mul64(l0_2, l2)
    	r2 = addMul64(r2, l1, l1)
    	r2 = addMul64(r2, l3_38, l4)
    
    	// r3 = l0×l3 + l1×l2 + l2×l1 + l3×l0 + 19×l4×l4 = 2×l0×l3 + 2×l1×l2 + 19×l4×l4
    	r3 := mul64(l0_2, l3)
    	r3 = addMul64(r3, l1_2, l2)
    	r3 = addMul64(r3, l4_19, l4)
    
    	// r4 = l0×l4 + l1×l3 + l2×l2 + l3×l1 + l4×l0 = 2×l0×l4 + 2×l1×l3 + l2×l2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. test/label1.go

    	}
    	if x == 18 {
    		goto L5
    	}
    
    	for {
    		if x == 19 {
    			break L1 // ERROR "invalid break label .*L1"
    		}
    		if x == 20 {
    			continue L1 // ERROR "invalid continue label .*L1"
    		}
    		if x == 21 {
    			goto L1
    		}
    	}
    
    	continue // ERROR "continue is not in a loop$|continue statement not within for"
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  7. test/fixedbugs/bug284.go

    	x2 = X2(x1) // ERROR "cannot|need type assertion|incompatible"
    	x2 = x2
    
    	type L1 []int
    	type L2 []NewInt
    	var l0 []int
    	var l1 L1
    	var l2 L2
    	l0 = l0
    	l0 = l1
    	l0 = []int(l2) // ERROR "cannot|invalid"
    	l1 = l0
    	l1 = l1
    	l1 = L1(l2) // ERROR "cannot|invalid"
    	l2 = L2(l0) // ERROR "cannot|invalid"
    	l2 = L2(l1) // ERROR "cannot|invalid"
    	l2 = l2
    
    	type M1 map[string]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 3.5K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/field/_asm/fe_amd64_asm.go

    	mul64(r1, 2, l0, l1)
    	addMul64(r1, 38, l2, l4)
    	addMul64(r1, 19, l3, l3)
    
    	// r2 = = 2×l0×l2 + l1×l1 + 19×2×l3×l4
    	r2 := uint128{"r2", GP64(), GP64()}
    	mul64(r2, 2, l0, l2)
    	addMul64(r2, 1, l1, l1)
    	addMul64(r2, 38, l3, l4)
    
    	// r3 = = 2×l0×l3 + 2×l1×l2 + 19×l4×l4
    	r3 := uint128{"r3", GP64(), GP64()}
    	mul64(r3, 2, l0, l3)
    	addMul64(r3, 2, l1, l2)
    	addMul64(r3, 19, l4, l4)
    
    	// r4 = = 2×l0×l4 + 2×l1×l3 + l2×l2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. pkg/config/resource/name_test.go

    	actual := NewShortOrFullName("ns1", "ns2/l1")
    	expected := NewFullName("ns2", "l1")
    	if actual != expected {
    		t.Fatalf("Expected %v, got %v", expected, actual)
    	}
    }
    
    func TestNewShortOrFullName_NoNamespace(t *testing.T) {
    	actual := NewShortOrFullName("ns1", "l1")
    	expected := NewFullName("ns1", "l1")
    	if actual != expected {
    		t.Fatalf("Expected %v, got %v", expected, actual)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  10. test/typeparam/listimp2.dir/main.go

    }
    
    func TestIssue4103() {
    	l1 := a.New[int]()
    	l1.PushBack(1)
    	l1.PushBack(2)
    
    	l2 := a.New[int]()
    	l2.PushBack(3)
    	l2.PushBack(4)
    
    	e := l1.Front()
    	l2.Remove(e) // l2 should not change because e is not an element of l2
    	if n := l2.Len(); n != 2 {
    		panic(fmt.Sprintf("l2.Len() = %d, want 2", n))
    	}
    
    	l1.InsertBefore(8, e)
    	if n := l1.Len(); n != 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top