Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 273 for b1 (0.02 sec)

  1. src/crypto/tls/testdata/Client-TLSv13-ClientCert-Ed25519

    00000100  cb 3b 74                                          |.;t|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 7a 02 00 00  76 03 03 28 10 3b 44 b1  |....z...v..(.;D.|
    00000010  0f a9 77 89 f9 dd 3c 3a  ad 83 a0 ca 3e 60 d6 0e  |..w...<:....>`..|
    00000020  ab 94 3a ec 2e 63 ef b1  41 90 48 20 00 00 00 00  |..:..c..A.H ....|
    00000030  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. istioctl/pkg/analyze/analyze_test.go

    	"istio.io/istio/pkg/config/analysis/diag"
    )
    
    func TestErrorOnIssuesFound(t *testing.T) {
    	g := NewWithT(t)
    
    	msgs := []diag.Message{
    		diag.NewMessage(
    			diag.NewMessageType(diag.Error, "B1", "Template: %q"),
    			nil,
    			"",
    		),
    		diag.NewMessage(
    			diag.NewMessageType(diag.Warning, "A1", "Template: %q"),
    			nil,
    			"",
    		),
    	}
    
    	err := errorIfMessagesExceedThreshold(msgs)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_cycle.txt

    go 1.13
    
    replace (
    	a v0.1.0 => ./a1
    	b v0.1.0 => ./b1
    	b v0.2.0 => ./b2
    	c v0.1.0 => ./c1
    	c v0.2.0 => ./c2
    )
    
    require (
    	a v0.1.0
    	b v0.2.0 // indirect
    )
    -- main.go --
    package main
    
    import _ "a"
    
    func main() {}
    
    -- a1/go.mod --
    module a
    
    go 1.13
    
    require b v0.1.0
    -- a1/a.go --
    package a
    
    import _ "c"
    -- b1/go.mod --
    module b
    
    go 1.13
    
    require c v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 19 15:51:38 UTC 2019
    - 949 bytes
    - Viewed (0)
  4. src/internal/chacha8rand/chacha8_generic.go

    		for round := 0; round < 4; round++ {
    			b0, b4, b8, b12 = qr(b0, b4, b8, b12)
    			b1, b5, b9, b13 = qr(b1, b5, b9, b13)
    			b2, b6, b10, b14 = qr(b2, b6, b10, b14)
    			b3, b7, b11, b15 = qr(b3, b7, b11, b15)
    
    			b0, b5, b10, b15 = qr(b0, b5, b10, b15)
    			b1, b6, b11, b12 = qr(b1, b6, b11, b12)
    			b2, b7, b8, b13 = qr(b2, b7, b8, b13)
    			b3, b4, b9, b14 = qr(b3, b4, b9, b14)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/testdata/asan_unsafe_fail2.go

    	a := 1
    	b := 2
    	c := add(a, b)
    	d := a + b
    	fmt.Println(c, d)
    }
    
    //go:noinline
    func add(a1, b1 int) (ret int) {
    	// The return value
    	// When -asan is enabled, the unsafe.Pointer(&ret) conversion is escaping.
    	var p *int = (*int)(unsafe.Add(unsafe.Pointer(&ret), 1*unsafe.Sizeof(int(1))))
    	*p = 123 // BOOM
    	ret = a1 + b1
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 550 bytes
    - Viewed (0)
  6. test/indirect1.go

    		len(a0)+
    		len(a1)+
    		len(a2)+
    
    		cap(a0)+
    		cap(a1)+
    		cap(a2)+
    
    		len(b0)+
    		len(b1)+	// ERROR "illegal|invalid|must be"
    		len(b2)+	// ERROR "illegal|invalid|must be"
    		len(b3)+
    		len(b4)+	// ERROR "illegal|invalid|must be"
    
    		cap(b0)+
    		cap(b1)+	// ERROR "illegal|invalid|must be"
    		cap(b2)+	// ERROR "illegal|invalid|must be"
    		cap(b3)+
    		cap(b4)	// ERROR "illegal|invalid|must be"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  7. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

              rangesBuffer.writeByte(range.b1)
              rangesBuffer.writeByte('-'.code)
              rangesBuffer.writeByte('-'.code)
            }
            is MappedRange.Inline1 -> {
              rangesBuffer.writeByte(range.b1)
              rangesBuffer.writeByte(range.b2)
              rangesBuffer.writeByte('-'.code)
            }
            is MappedRange.Inline2 -> {
              rangesBuffer.writeByte(range.b1)
              rangesBuffer.writeByte(range.b2)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/shortcircuit_test.go

    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("arg1", OpArg, c.config.Types.Int64, 0, nil),
    			Valu("arg2", OpArg, c.config.Types.Int64, 0, nil),
    			Valu("arg3", OpArg, c.config.Types.Int64, 0, nil),
    			Goto("b1")),
    		Bloc("b1",
    			Valu("cmp1", OpLess64, c.config.Types.Bool, 0, nil, "arg1", "arg2"),
    			If("cmp1", "b2", "b3")),
    		Bloc("b2",
    			Valu("cmp2", OpLess64, c.config.Types.Bool, 0, nil, "arg2", "arg3"),
    			Goto("b3")),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 23:01:51 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  9. test/typeparam/listimp.dir/main.go

    	if got, want := i1.Largest(), 3; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    
    	b3 := &a.List[byte]{nil, byte(1)}
    	b2 := &a.List[byte]{b3, byte(3)}
    	b1 := &a.List[byte]{b2, byte(2)}
    	if got, want := b1.Largest(), byte(3); got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    
    	f3 := &a.List[float64]{nil, 13.5}
    	f2 := &a.List[float64]{f3, 1.2}
    	f1 := &a.List[float64]{f2, 4.5}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_lazy_downgrade.txt

    go 1.17
    
    require example.com/b v0.1.0
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a_test
    
    import _ "example.com/b"
    
    -- b1/go.mod --
    module example.com/b
    
    go 1.17
    
    require example.com/c v0.1.0
    -- b1/b.go --
    package b
    -- b1/b_test.go --
    package b_test
    import _ "example.com/c"
    
    -- b2/go.mod --
    module example.com/b
    
    go 1.17
    
    require example.com/c v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
Back to top