Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 446 for b1 (0.03 sec)

  1. src/crypto/tls/testdata/Server-TLSv13-ResumeDisabled

    000000e0  bb b1 49 07 8a ba 9b d8  1a f4 48 18 f5 c5 90 f1  |..I.......H.....|
    000000f0  a7 24 cd 3b ab 2f 49 28  fa 3c 64 80 50 a6 38 d9  |.$.;./I(.<d.P.8.|
    00000100  38 15 b1 37 ca 8d 38 58  5b 8d c6 7f 01 98 f1 98  |8..7..8X[.......|
    00000110  3b 33 47 44 b5 47 d3 84  d4 96 bd 48 58 3f 62 86  |;3GD.G.....HX?b.|
    00000120  2a 50 18 8d 64 7c 8d 79  70 3d c1 4f 8a 0a 40 09  |*P..d|.yp=.O..@.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 10 01:40:27 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/likelyadjust.go

    					if certain[b1] > certain[b0] {
    						prediction = BranchLikely
    						if f.pass.debug > 0 {
    							describeBranchPrediction(f, b, certain[b0], certain[b1], prediction)
    						}
    					} else if certain[b0] > certain[b1] {
    						prediction = BranchUnlikely
    						if f.pass.debug > 0 {
    							describeBranchPrediction(f, b, certain[b1], certain[b0], prediction)
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_lazy_test_of_test_dep.txt

    -- a/a_test.go --
    package a
    
    import (
    	"testing"
    
    	_ "example.com/b"
    )
    
    func TestUsingB(t *testing.T) {
    	// …
    }
    -- b1/go.mod --
    module example.com/b
    
    go 1.15
    
    require example.com/c v0.1.0
    -- b1/b.go --
    package b
    -- b1/b_test.go --
    package b
    
    import _ "example.com/c"
    -- b2/go.mod --
    module example.com/b
    
    go 1.15
    
    require example.com/c v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 19:32:28 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	MOVO  A0, A1; MOVO B0, B1; MOVO C0, C1; MOVO D0, D1; PADDL ·sseIncMask<>(SB), D1
    	MOVO  A1, A2; MOVO B1, B2; MOVO C1, C2; MOVO D1, D2; PADDL ·sseIncMask<>(SB), D2
    	MOVO  B0, T1; MOVO C0, T2; MOVO D1, T3
    	MOVQ  $10, itr2
    
    openSSE128InnerCipherLoop:
    	chachaQR(A0, B0, C0, D0, T0); chachaQR(A1, B1, C1, D1, T0); chachaQR(A2, B2, C2, D2, T0)
    	shiftB0Left;  shiftB1Left; shiftB2Left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv12-RSA-AES

    00000040  cb cb de b5 e3 c3 12 d5  7b 6f 08 17 03 03 00 40  |........{o.....@|
    00000050  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000060  4f 4f fe dd e5 b1 38 6b  b1 2f 5d 23 8b b2 34 b1  |OO....8k./]#..4.|
    00000070  c6 9f 8d 32 83 5f b5 36  0b df a6 aa 3f 90 30 b7  |...2._.6....?.0.|
    00000080  1d 66 26 89 29 ab 71 dc  00 14 d6 8e 7e 47 bd ee  |.f&.).q.....~G..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. test/codegen/floats.go

    	z := f3 / 0.5
    
    	return x, y, z
    }
    
    func indexLoad(b0 []float32, b1 float32, idx int) float32 {
    	// arm64:`FMOVS\s\(R[0-9]+\)\(R[0-9]+<<2\),\sF[0-9]+`
    	return b0[idx] * b1
    }
    
    func indexStore(b0 []float64, b1 float64, idx int) {
    	// arm64:`FMOVD\sF[0-9]+,\s\(R[0-9]+\)\(R[0-9]+<<3\)`
    	b0[idx] = b1
    }
    
    // ----------- //
    //    Fused    //
    // ----------- //
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/compress/zlib/writer_test.go

    	}
    	defer zlibr.Close()
    
    	// Compare the decompressed data.
    	b1, err1 := io.ReadAll(zlibr)
    	if err1 != nil {
    		t.Errorf("%s (level=%d, dict=%q): %v", fn, level, d, err1)
    		return
    	}
    	if len(b0) != len(b1) {
    		t.Errorf("%s (level=%d, dict=%q): length mismatch %d versus %d", fn, level, d, len(b0), len(b1))
    		return
    	}
    	for i := 0; i < len(b0); i++ {
    		if b0[i] != b1[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-RSAPSS

    00000120  51 29 73 c4 ad 34 e5 69  78 18 eb 03 55 c0 c6 0d  |Q)s..4.ix...U...|
    00000130  43 d5 4a 5d cb 53 e6 b9  df e8 8b 0e 98 04 89 bb  |C.J].S..........|
    00000140  f4 a1 48 01 af d3 42 ef  17 e7 f9 27 b4 b1 63 99  |..H...B....'..c.|
    00000150  91 a6 c5 c1 cb 6d 1c 55  b1 69 1c ec b1 b7 c3 cd  |.....m.U.i......|
    00000160  7a 93 f2 d8 e4 c4 96 43  0a e1 18 b5 9a 3b 57 83  |z......C.....;W.|
    00000170  98 ce 74 f2 4c 65 ad 01  aa 76 b5 b0 7c a0 7d 09  |..t.Le...v..|.}.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/internal/reflectlite/all_test.go

    	v := ValueOf(b)
    	b1 := ToInterface(v).(struct {
    		a, b, c, d int64
    	})
    	if b1.a != b.a || b1.b != b.b || b1.c != b.c || b1.d != b.d {
    		t.Errorf("ValueOf(%v).Interface().(*Big) = %v", b, b1)
    	}
    }
    
    type big struct {
    	a, b, c, d, e int64
    }
    
    func TestBigStruct(t *testing.T) {
    	b := big{1, 2, 3, 4, 5}
    	v := ValueOf(b)
    	b1 := ToInterface(v).(big)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/IncludedBuildValidationIntegrationTest.groovy

        @Ignore
        def "reports failure when included build directory is not the root directory of build"() {
            when:
            includedBuilds << buildB.file('b1')
    
            then:
            fails(buildA, "help")
    
            and:
            failure.assertHasDescription("Included build 'b1' must have a settings file.")
        }
    
        def "reports failure for duplicate included build name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top