Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 133 for b1 (0.03 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/mlrt/parallelization.mlir

      %a3 = "tf.AddV2"(%a2, %a) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    
      %b0 = "tf.Sub"(%b, %b) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      %b1 = "tf.Sub"(%b0, %b) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    
      %c = "tf.AddV2"(%b1, %a) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    
      %b2 = "tf.Sub"(%b1, %b) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      %b3 = "tf.Sub"(%b2, %b) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    00000170  74 8d 71 25 b8 5a c1 13  d6 f6 01 58 6d 71 31 7c  |t.q%.Z.....Xmq1||
    00000180  66 e8 e5 36 06 b3 e4 51  0c b1 43 88 bf 2b 54 d7  |f..6...Q..C..+T.|
    00000190  52 79 3d 07 a9 c2 e5 97  cc 79 87 b1 c7 8b 30 7b  |Ry=......y....0{|
    000001a0  b1 fe 90 58 35 a1 dc 18  8a fa cc df 63 2b 72 57  |...X5.......c+rW|
    000001b0  14 e1 12 4c bc d7 ba c2  e5 f7 4c 40 d6 34 ea 11  |...L......L@.4..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. src/crypto/rsa/testdata/pss-vect.txt.bz2

    Signature Example 9.6 # ---------- # Message to be signed: 88 c7 a9 f1 36 04 01 d9 0e 53 b1 01 b6 1c 53 25 c3 c7 5d b1 b4 11 fb eb 8e 83 0b 75 e9 6b 56 67 0a d2 45 40 4e 16 79 35 44 ee 35 4b c6 13 a9 0c c9 84 87 15 a7 3d b5 89 3e 7f 6d 27 98 15 c0 c1 de 83 ef 8e 29 56 e3 a5 6e d2 6a 88 8d 7a 9c dc d0 42 f4 b1 6b 7f a5 1e f1 a0 57 36 62 d1 6a 30 2d 0e c5 b2 85 d2 e0 3a d9 65 29 c8 7b 3d 37 4d b3 72 d9 5b 24 43 d0 61 b6 b1 a3 50 ba 87 80 7e d0 83 af d1 eb 05 c3 f5 2f 4e ba 5e d2 22 77 14 fd b5 0b 9d 9d 9d...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 27.9K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwiceRejected

    00000010  31 f3 b1 d8 c7 c9 26 6d  74 0a c0 c0 c0 39 ad b5  |1.....&mt....9..|
    00000020  1b b1 dc d3 15 9f a4 96  27 dd 65 85 ad 83 2f 97  |........'.e.../.|
    00000030  42 6f 8a 9b 58 fc f8 1b  54 89 cd 9c 11 10 b9 1d  |Bo..X...T.......|
    00000040  c3 e1 8e 89 20 a5 2d 0b  31 b5 e0 16 54 ce 93 9b  |.... .-.1...T...|
    00000050  de cc b1 af 48 48 33 96  4d a6 00 78 7b 60 3f 7c  |....HH3.M..x{`?||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/nettest/conntest.go

    	c1.SetReadDeadline(time.Now().Add(time.Millisecond))
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    
    			b1 := make([]byte, 1024)
    			b2 := make([]byte, 1024)
    			for j := 0; j < 100; j++ {
    				_, err := c1.Read(b1)
    				copy(b1, b2) // Mutate b1 to trigger potential race
    				if err != nil {
    					checkForTimeoutError(t, err)
    					c1.SetReadDeadline(time.Now().Add(time.Millisecond))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            given:
            settingsFile << "rootProject.name = 'parent'"
            buildFile << """
                task b1(type:GradleBuild) {
                    tasks = ["t"]
                    buildName = 'bp'
                }
                task t
            """
    
            when:
            run 'b1'
    
            then:
            executed(":bp:t")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-RSA

    000002d0  fc 63 e1 22 f8 1f 8d ad  50 09 1a 92 a4 57 ea 88  |.c."....P....W..|
    000002e0  6d 9c 20 70 f1 8b 85 15  ec 8e b2 b3 07 00 80 b1  |m. p............|
    000002f0  03 03 a7 cf 8f 73 e2 a3  29 0d 55 4a 06 72 db e5  |.....s..).UJ.r..|
    00000300  65 41 44 49 05 1c 37 17  1c 02 6e b1 f4 e8 a9 bb  |eADI..7...n.....|
    00000310  00 24 3e 3a 3c d6 1c f6  dd 21 a4 e3 61 b0 1d 2e  |.$>:<....!..a...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top