Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 235 for B3 (0.02 sec)

  1. src/internal/types/testdata/check/init0.go

    	d2 = b2
    )
    
    var (
    	s3 /* ERROR "initialization cycle: s3 refers to itself" */ int = s3
    
    	x3 /* ERROR "initialization cycle for x3" */ int = y3
    	y3 = x3
    
    	a3 = b3
    	b3 /* ERROR "initialization cycle for b3" */ int = c3
    	c3 = d3
    	d3 = b3
    )
    
    // cycles via struct fields
    
    type S1 struct {
    	f int
    }
    const cx3 S1 /* ERROR "invalid constant type" */ = S1{cx3.f}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/mvs/mvs_test.go

    #
    name: downhiddenartifact
    A: B3 C2
    A1: B3
    B1: E1
    B2.hidden:
    B3: D2
    C1: B2.hidden
    C2: D2
    D1:
    D2:
    build A1: A1 B3 D2
    downgrade A1 D1: A1 B1 D1 E1
    build A: A B3 C2 D2
    downgrade A D1: A B2.hidden C1 D1
    
    # Both B3 and C3 require D2.
    # If we downgrade D to D1, then in isolation B3 would downgrade to B1,
    # and C3 would downgrade to C1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. test/indirect1.go

    var s2 *string = &s0
    var s3 string = "a"
    var s4 *string = &s3
    
    var a0 [10]int
    var a1 *[10]int
    var a2 *[10]int = &a0
    
    var b0 []int
    var b1 *[]int
    var b2 *[]int = &b0
    var b3 []int = []int{1, 2, 3}
    var b4 *[]int = &b3
    
    func f() {
    	// this is spaced funny so that
    	// the compiler will print a different
    	// line number for each len call when
    	// it decides there are type errors.
    	x :=
    		len(m0)+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_amd64.s

    		PSHUFD $78, T0, T0
    		PXOR B2, T0
    		MOVOU POLY, B2
    		PCLMULQDQ $0x01, T0, B2
    		PSHUFD $78, T0, T0
    		PXOR T0, B2
    		PXOR T1, B2
    
    		MOVOU B2, (16*12)(dst)
    		PSHUFD $78, B2, B3
    		PXOR B2, B3
    		MOVOU B3, (16*13)(dst)
    
    		DECQ AX
    		LEAQ (-16*2)(dst), dst
    	JNE initLoop
    
    	RET
    #undef NR
    #undef KS
    #undef dst
    
    // func gcmAesData(productTable *[256]byte, data []byte, T *[16]byte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. test/fixedbugs/issue23504.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func f() {
    	var B bool
    	B2 := (B || B && !B) && !B
    	B3 := B2 || B
    	for (B3 || B2) && !B2 && B {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 00:56:13 UTC 2018
    - 284 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/branchelim_test.go

    					Valu("const2", OpConst32, intType, 2, nil),
    					Valu("addr", OpAddr, boolType.PtrTo(), 0, nil, "sb"),
    					Valu("cond", OpLoad, boolType, 0, nil, "addr", "start"),
    					If("cond", "b2", "b3")),
    				Bloc("b2",
    					Goto("b3")),
    				Bloc("b3",
    					Valu("phi", OpPhi, intType, 0, nil, "const1", "const2"),
    					Valu("retstore", OpStore, types.TypeMem, 0, nil, "phi", "sb", "start"),
    					Exit("retstore")))
    
    			CheckFunc(fun.f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    #define ROUND4(a0, a1, a2, a3, b0, b1, b2, b3, c0, c1, c2, c3, d0, d1, d2, d3) \
    	VAF    a1, a0, a0  \
    	VAF    b1, b0, b0  \
    	VAF    c1, c0, c0  \
    	VAF    d1, d0, d0  \
    	VX     a0, a2, a2  \
    	VX     b0, b2, b2  \
    	VX     c0, c2, c2  \
    	VX     d0, d2, d2  \
    	VERLLF $16, a2, a2 \
    	VERLLF $16, b2, b2 \
    	VERLLF $16, c2, c2 \
    	VERLLF $16, d2, d2 \
    	VAF    a2, a3, a3  \
    	VAF    b2, b3, b3  \
    	VAF    c2, c3, c3  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. samples/bookinfo/src/details/details.rb

          # Stackdriver Istio configurations.
          'grpc-trace-bin',
    
          # b3 trace headers. Compatible with Zipkin, OpenCensusAgent, and
          # Stackdriver Istio configurations.
          'x-b3-traceid',
          'x-b3-spanid',
          'x-b3-parentspanid',
          'x-b3-sampled',
          'x-b3-flags',
    
          # SkyWalking trace headers.
          'sw8',
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv10-ClientCert-ECDSA-RSA

    00000290  73 bb b3 43 77 8d 0c 1c  f1 0f a1 d8 40 83 61 c9  |s..Cw.......@.a.|
    000002a0  4c 72 2b 9d ae db 46 06  06 4d f4 c1 b3 3e c0 d1  |Lr+...F..M...>..|
    000002b0  bd 42 d4 db fe 3d 13 60  84 5c 21 d3 3b e9 fa e7  |.B...=.`.\!.;...|
    000002c0  16 03 01 00 aa 0c 00 00  a6 03 00 1d 20 55 51 65  |............ UQe|
    000002d0  bb 06 22 d7 d6 97 39 d1  f4 dc 95 06 b3 a4 a7 00  |.."...9.........|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/deadcode_test.go

    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("cond", OpConstBool, c.config.Types.Bool, 0, nil),
    			If("cond", "b2", "b4")),
    		Bloc("b2",
    			If("cond", "b3", "b4")),
    		Bloc("b3",
    			If("cond", "b3", "b4")),
    		Bloc("b4",
    			If("cond", "b3", "exit")),
    		Bloc("exit",
    			Exit("mem")))
    
    	CheckFunc(fun.f)
    	Opt(fun.f)
    	CheckFunc(fun.f)
    	Deadcode(fun.f)
    	CheckFunc(fun.f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 23:01:51 UTC 2017
    - 3.5K bytes
    - Viewed (0)
Back to top