Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for L1 (0.02 sec)

  1. pilot/test/xdstest/validate.go

    	check := map[string]int{}
    	for i1, l1 := range l.FilterChains {
    		// We still create virtual inbound listeners before merging into single inbound
    		// This hack skips these ones, as they will be processed later
    		if hcm := ExtractHTTPConnectionManager(t, l1); strings.HasPrefix(hcm.GetStatPrefix(), "inbound_") && l.Name != "virtualInbound" {
    			continue
    		}
    
    		s := Dump(t, l1.FilterChainMatch)
    		if i2, ok := check[s]; ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/config/resource/metadata_test.go

    	g := NewWithT(t)
    
    	m := Metadata{
    		FullName:    NewFullName("ns1", "rs1"),
    		Version:     Version("v1"),
    		Annotations: map[string]string{"foo": "bar"},
    		Labels:      map[string]string{"l1": "l2"},
    	}
    
    	c := m.Clone()
    	g.Expect(m).To(Equal(c))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/decls0.go

    	}
    	S4/* ERROR "invalid recursive type" */ struct {
    		S4
    	}
    	S5 /* ERROR "invalid recursive type" */ struct {
    		S6
    	}
    	S6 struct {
    		field S7
    	}
    	S7 struct {
    		S5
    	}
    
    	L1 []L1
    	L2 []int
    
    	A1 [10.0]int
    	A2 /* ERROR "invalid recursive type" */ [10]A2
    	A3 /* ERROR "invalid recursive type" */ [10]struct {
    		x A4
    	}
    	A4 [10]A3
    
    	F1 func()
    	F2 func(x, y, z float32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/go/types/resolver_test.go

    		}
    		`,
    		`
    		package p
    		type S struct{}
    		func (T) _() {}
    		func (T) _() {}
    		`,
    		`
    		package p
    		func _() {
    		L0:
    		L1:
    			goto L0
    			for {
    				goto L1
    			}
    			if true {
    				goto L2
    			}
    		L2:
    		}
    		`,
    	}
    
    	pkgnames := []string{
    		"fmt",
    		"math",
    	}
    
    	// parse package files
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/math/big/arith_amd64.s

    L1:	// n > 0
    	ADDQ CX, CX		// restore CF
    	MOVQ 0(R8)(SI*8), R11
    	ADCQ 0(R9)(SI*8), R11
    	MOVQ R11, 0(R10)(SI*8)
    	SBBQ CX, CX		// save CF
    
    	ADDQ $1, SI		// i++
    	SUBQ $1, DI		// n--
    	JG L1			// if n > 0 goto L1
    
    E1:	NEGQ CX
    	MOVQ CX, c+72(FP)	// return c
    	RET
    
    
    // func subVV(z, x, y []Word) (c Word)
    // (same as addVV except for SBBQ instead of ADCQ and label names)
    TEXT ·subVV(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. src/math/big/arith_386.s

    	MOVL $0, DX		// c = 0
    	JMP E1
    
    L1:	MOVL (SI)(BX*4), AX
    	ADDL DX, DX		// restore CF
    	ADCL (CX)(BX*4), AX
    	SBBL DX, DX		// save CF
    	MOVL AX, (DI)(BX*4)
    	ADDL $1, BX		// i++
    
    E1:	CMPL BX, BP		// i < n
    	JL L1
    
    	NEGL DX
    	MOVL DX, c+36(FP)
    	RET
    
    
    // func subVV(z, x, y []Word) (c Word)
    // (same as addVV except for SBBL instead of ADCL and label names)
    TEXT ·subVV(SB),NOSPLIT,$0
    	MOVL z+0(FP), DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/math/big/arith_arm.s

    	MOVW	z+0(FP), R1
    	MOVW	z_len+4(FP), R4
    	MOVW	x+12(FP), R2
    	MOVW	y+24(FP), R3
    	ADD	R4<<2, R1, R4
    	B E1
    L1:
    	MOVW.P	4(R2), R5
    	MOVW.P	4(R3), R6
    	ADC.S	R6, R5
    	MOVW.P	R5, 4(R1)
    E1:
    	TEQ	R1, R4
    	BNE L1
    
    	MOVW	$0, R0
    	MOVW.CS	$1, R0
    	MOVW	R0, c+36(FP)
    	RET
    
    
    // func subVV(z, x, y []Word) (c Word)
    // (same as addVV except for SBC instead of ADC and label names)
    TEXT ·subVV(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc_64bit.go

    )
    
    const (
    	// The number of levels in the radix tree.
    	summaryLevels = 5
    
    	// Constants for testing.
    	pageAlloc32Bit = 0
    	pageAlloc64Bit = 1
    
    	// Number of bits needed to represent all indices into the L1 of the
    	// chunks map.
    	//
    	// See (*pageAlloc).chunks for more details. Update the documentation
    	// there should this number change.
    	pallocChunksL1Bits = 13
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top