Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for b1 (0.03 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    //
    // Format    a1  a2  a3  a4  a5  a6
    // -------------------------------
    // a         l1,  0, b1, d1, b2, d2
    // b         l1, l2, b1, d1, b2, d2
    // c         l1, i3, b1, d1, b2, d2
    // d         r1, r3, b1, d1, b2, d2
    // e         r1, r3, b2, d2, b4, d4
    // f          0, l2, b1, d1, b2, d2
    func zSS(f form, op, l1_r1, l2_i3_r3, b1_b2, d1_d2, b2_b4, d2_d4 uint32, asm *[]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	v := ValueOf(b)
    	b1 := v.Interface().(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 := v.Interface().(big)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"!self.listMap.exists(m, m.v == 'x')",
    				"!self.listMap.exists_one(m, m.k.startsWith('a'))",
    				"size(self.listMap.filter(m, m.k == 'a1')) == 1",
    				"self.listMap.exists(m, m.k == 'a1' && m.v == 'b1')",
    				"self.listMap.map(m, m.v).exists(v, v == 'b1')",
    
    				// test comprehensions where the field used in predicates is unset on all but one of the elements:
    				// - with has checks:
    
    				"self.listMap.exists(m, has(m.v2) && m.v2 == 'z')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <pre>
    type (
    	A1 = string
    	A2 = A1
    )
    
    type (
    	B1 string
    	B2 B1
    	B3 []B1
    	B4 B3
    )
    </pre>
    
    <p>
    The underlying type of <code>string</code>, <code>A1</code>, <code>A2</code>, <code>B1</code>,
    and <code>B2</code> is <code>string</code>.
    The underlying type of <code>[]B1</code>, <code>B3</code>, and <code>B4</code> is <code>[]B1</code>.
    </p>
    
    <h3 id="Method_sets">Method sets</h3>
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        // If we have the:
        // original_offset_dims like [1, 2, 4]
        // batch_dims like [0, 3]
        // It's like performing transpose on a "canonicalized"
        // [batch_dims, sliced_dims]: [B1, B2, O1, O2, O3]
        // into the current layout: [B1, O1, O2, B2, O3]
        // where the permutation is [0, 2, 3, 1, 4]
        int batch_idx = 0;
        int offset_idx = 0;
        int batch_dim_size = batch_dims.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. src/crypto/x509/x509_test.go

                    DNS:longOID.example
                X509v3 Certificate Policies:
                    Policy: 1.3.6.1.4.1.311.21.8.1492336001
    
        Signature Algorithm: sha256WithRSAEncryption
             72:77:8b:de:48:fb:6d:9a:94:b1:be:d4:90:7d:4c:e6:d3:79:
             fa:fb:fc:3e:d5:3d:e9:a0:ce:28:2b:2f:94:77:3f:87:f8:9c:
             9f:91:1c:f3:f6:58:91:15:6b:24:b9:ca:ae:9f:ee:ca:c8:31:
             db:1a:3d:bb:6b:83:6d:bc:81:8b:a1:79:d5:3e:bb:dd:93:fe:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		{"http://localhost:8080/_ah/login?continue=http://localhost:8080/",
    			"http://localhost:8080/_ah/login?continue=http://localhost:8080/"},
    
    		{"/фубар", "/%d1%84%d1%83%d0%b1%d0%b0%d1%80"},
    		{"http://foo.com/фубар", "http://foo.com/%d1%84%d1%83%d0%b1%d0%b0%d1%80"},
    	}
    
    	for _, tt := range tests {
    		rec := httptest.NewRecorder()
    		Redirect(rec, req, tt.in, 302)
    		if got, want := rec.Code, 302; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top