Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 446 for b1 (0.22 sec)

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

    00000010  6c 1f de 6b 2d 67 9e 1b  13 13 ad 67 d8 0f b2 b1  |l..k-g.....g....|
    00000020  95 17 e7 0b e1 ba 6f 93  20 43 aa c7 a4 02 8e 38  |......o. C.....8|
    00000030  01 6b 53 55 33 6e 82 ea  70 d7 e2 a6 bd be 57 2d  |.kSU3n..p.....W-|
    00000040  85 1c 4a 28 30 42 34 e6  f9 38 9c 59 ed 1c fc ff  |..J(0B4..8.Y....|
    00000050  19 0f 1d 71 f1 4b 2a 7a  b1 c6 d9 11 a5 5e ca 1c  |...q.K*z.....^..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv12-RenegotiationRejected

    00000310  9b e7 06 73 88 9f f9 7d  95 ce 74 a6 05 e9 38 a5  |...s...}..t...8.|
    00000320  26 4b b2 26 31 5c e9 f9  a8 f8 6e 6b 05 e4 39 b5  |&K.&1\....nk..9.|
    00000330  fe b1 b1 cd 40 23 e9 68  f3 9c ed 91 71 d3 0b c5  |....@#.h....q...|
    00000340  91 c5 b2 91 69 a9 4b 2c  a7 0c 24 d6 a9 e7 74 89  |....i.K,..$...t.|
    00000350  9e ce 8b 00 72 9a c9 86  8b ca 8d 39 01 a0 71 3e  |....r......9..q>|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe_amd64.s

    	ADCQ   DX, SI
    
    	// r0 += 19×a3×b2
    	MOVQ   24(CX), AX
    	IMUL3Q $0x13, AX, AX
    	MULQ   16(BX)
    	ADDQ   AX, DI
    	ADCQ   DX, SI
    
    	// r0 += 19×a4×b1
    	MOVQ   32(CX), AX
    	IMUL3Q $0x13, AX, AX
    	MULQ   8(BX)
    	ADDQ   AX, DI
    	ADCQ   DX, SI
    
    	// r1 = a0×b1
    	MOVQ (CX), AX
    	MULQ 8(BX)
    	MOVQ AX, R9
    	MOVQ DX, R8
    
    	// r1 += a1×b0
    	MOVQ 8(CX), AX
    	MULQ (BX)
    	ADDQ AX, R9
    	ADCQ DX, R8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. test/fixedbugs/issue44383.go

    // license that can be found in the LICENSE file.
    
    // Issue 44383: gofrontend internal compiler error
    
    package main
    
    func main() {
    	var b1, b2 byte
    	f := func() int {
    		var m map[byte]int
    		return m[b1/b2]
    	}
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 11 17:20:58 UTC 2021
    - 337 bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/clientinput/StdInStreamTest.groovy

            def stream = new StdInStream(dispatch)
            def text = "some text"
            def bytes = text.bytes
    
            when:
            async {
                start {
                    def b1 = stream.read()
                    assert b1 == bytes[0]
                    def b2 = stream.read()
                    assert b2 == bytes[1]
                }
                thread.blockUntil.requested
                thread.block()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_downup_indirect_pruned.txt

    replace (
    	example.com/b v0.1.0 => ./b1
    	example.com/b v0.2.0 => ./b2
    	example.com/c v0.1.0 => ./c1
    	example.com/c v0.2.0 => ./c2
    	example.com/d v0.1.0 => ./d
    	example.com/d v0.2.0 => ./d
    )
    -- go.mod.down2 --
    module example.com/a
    
    go 1.17
    
    require example.com/c v0.1.0
    
    require example.com/d v0.2.0 // indirect
    
    replace (
    	example.com/b v0.1.0 => ./b1
    	example.com/b v0.2.0 => ./b2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/evex.go

    func (evex evexBits) P() byte { return (evex.b1 & evexP) >> 0 }
    
    // L returns EVEX.L'L value.
    func (evex evexBits) L() byte { return (evex.b1 & evexL) >> 2 }
    
    // M returns EVEX.mm value.
    func (evex evexBits) M() byte { return (evex.b1 & evexM) >> 4 }
    
    // W returns EVEX.W value.
    func (evex evexBits) W() byte { return (evex.b1 & evexW) >> 7 }
    
    // BroadcastEnabled reports whether BCST suffix is permitted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue50918.go

    package p
    
    type thing1 struct {
    	things []string
    }
    
    type thing2 struct {
    	things []thing1
    }
    
    func _() {
    	var a1, b1 thing1
    	_ = a1 /* ERROR "struct containing []string cannot be compared" */ == b1
    
    	var a2, b2 thing2
    	_ = a2 /* ERROR "struct containing []thing1 cannot be compared" */ == b2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 453 bytes
    - Viewed (0)
  9. test/typeparam/issue51700.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func f[B any](b B) {
    	if b1, ok := any(b).(interface{ m1() }); ok {
    		panic(1)
    		_ = b1.(B)
    	}
    	if b2, ok := any(b).(interface{ m2() }); ok {
    		panic(2)
    		_ = b2.(B)
    	}
    }
    
    type S struct{}
    
    func (S) m3() {}
    
    func main() {
    	f(S{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 17:06:19 UTC 2022
    - 413 bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/legacy/WagonB.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    /**
     * Wagon for testing, for protocols <code>b1</code> and <code>b2</code>
     *
     */
    @Named("b")
    @Singleton
    public class WagonB extends WagonMock {
        public String[] getSupportedProtocols() {
            return new String[] {"b1", "b2"};
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top