Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for L1 (0.09 sec)

  1. src/regexp/syntax/compile.go

    		} else {
    			head = i.Arg
    			i.Arg = val
    		}
    	}
    }
    
    func (l1 patchList) append(p *Prog, l2 patchList) patchList {
    	if l1.head == 0 {
    		return l2
    	}
    	if l2.head == 0 {
    		return l1
    	}
    
    	i := &p.Inst[l1.tail>>1]
    	if l1.tail&1 == 0 {
    		i.Out = l2.head
    	} else {
    		i.Arg = l2.head
    	}
    	return patchList{l1.head, l2.tail}
    }
    
    // A frag represents a compiled program fragment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/assign.go

    func appendSlice(n *ir.CallExpr, init *ir.Nodes) ir.Node {
    	walkAppendArgs(n, init)
    
    	l1 := n.Args[0]
    	l2 := n.Args[1]
    	l2 = cheapExpr(l2, init)
    	n.Args[1] = l2
    
    	var nodes ir.Nodes
    
    	// var s []T
    	s := typecheck.TempAt(base.Pos, ir.CurFunc, l1.Type())
    	nodes.Append(ir.NewAssignStmt(base.Pos, s, l1)) // s = l1
    
    	elemtype := s.Type().Elem()
    
    	// Decompose slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue48951.go

    package p
    
    type (
            A1[P any] [10]A1 /* ERROR "invalid recursive type" */ [P]
            A2[P any] [10]A2 /* ERROR "invalid recursive type" */ [*P]
            A3[P any] [10]*A3[P]
    
            L1[P any] []L1[P]
    
            S1[P any] struct{ f S1 /* ERROR "invalid recursive type" */ [P] }
            S2[P any] struct{ f S2 /* ERROR "invalid recursive type" */ [*P] } // like example in issue
            S3[P any] struct{ f *S3[P] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 822 bytes
    - Viewed (0)
  4. test/fixedbugs/issue19783.go

    // compile
    
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func Spin() {
    l1:
    	for true {
    		goto l1
    	l2:
    		if true {
    			goto l2
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 17:06:08 UTC 2017
    - 260 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/BuildActionCrossVersionSpec.groovy

            assert action1 != Action1
            def action2 = cl.loadClass(Action2.name)
            assert action2 != Action2
    
            expect:
            def l1 = withConnection {
                it.action(action1.getConstructor().newInstance())
                    .run()
            }
            l1 == ["not broken 1"]
            def l2 = withConnection {
                it.action(action2.getConstructor().newInstance())
                    .run()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/math/asin_s390x.s

    L5:
    	WORD	$0xED0090D0	//cdb	%f0,.L17-.L15(%r9)
    	BYTE	$0x00
    	BYTE	$0x19
    	BEQ		L9
    	WORD	$0xED0090C8	//cdb	%f0,.L18-.L15(%r9)
    	BYTE	$0x00
    	BYTE	$0x19
    	BEQ	L10
    	WFCEDBS	V8, V8, V0
    	BVS	L1
    	FMOVD	192(R9), F8
    	BR	L1
    L13:
    	WFMDB	V0, V0, V10
    L4:
    	WFMDB	V10, V10, V0
    	FMOVD	184(R9), F6
    	FMOVD	176(R9), F2
    	FMOVD	168(R9), F4
    	WFMADB	V0, V2, V6, V2
    	FMOVD	160(R9), F6
    	WFMADB	V0, V4, V6, V4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 20 17:42:08 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  7. src/math/log_s390x.s

    	WORD	$0xB3130001	//lcdbr	%f0,%f1
    	LDGR	R1, F4
    	WFMADB	V0, V4, V2, V0
    L1:
    	FMOVD	F0, ret+8(FP)
    	RET
    L3:
    	LTDBR	F0, F0
    	BEQ	L20
    	BGE	L1
    	BVS	L1
    
    	MOVD	$·logxnan<>+0(SB), R1
    	FMOVD	0(R1), F0
    	BR	L1
    L20:
    	MOVD	$·logxminf<>+0(SB), R1
    	FMOVD	0(R1), F0
    	FMOVD	F0, ret+8(FP)
    	RET
    L17:
    	BYTE	$0x18	//lr	%r5,%r1
    	BYTE	$0x51
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  8. src/runtime/mranges.go

    // diff returns the amount of bytes in between the
    // two offAddrs.
    func (l1 offAddr) diff(l2 offAddr) uintptr {
    	return l1.a - l2.a
    }
    
    // lessThan returns true if l1 is less than l2 in the offset
    // address space.
    func (l1 offAddr) lessThan(l2 offAddr) bool {
    	return (l1.a - arenaBaseOffset) < (l2.a - arenaBaseOffset)
    }
    
    // lessEqual returns true if l1 is less than or equal to l2 in
    // the offset address space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. operator/pkg/util/yaml.go

    		return res
    	}
    
    	return res + "\n" + diff
    }
    
    func diffStringList(l1, l2 []string) string {
    	var maxLen int
    	var minLen int
    	var l1Max bool
    	res := ""
    	if len(l1)-len(l2) > 0 {
    		maxLen = len(l1)
    		minLen = len(l2)
    		l1Max = true
    	} else {
    		maxLen = len(l2)
    		minLen = len(l1)
    		l1Max = false
    	}
    
    	for i := 0; i < maxLen; i++ {
    		d := ""
    		if i >= minLen {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. src/net/unixsock_test.go

    	})
    
    	t.Run("FileListener/SetUnlinkOnClose(true)", func(t *testing.T) {
    		l := listen(t)
    		f, _ := l.File()
    		l1, _ := FileListener(f)
    		checkExists(t, "after FileListener")
    		l1.(*UnixListener).SetUnlinkOnClose(true)
    		f.Close()
    		checkExists(t, "after File close")
    		l1.Close()
    		checkNotExists(t, "after FileListener close")
    		l.Close()
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top