Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for Xy (0.07 sec)

  1. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.pbtxt.gz

    ��w|�[�#���� ˸�k���x�q��� ��껂W��u�6���U���RJ�?��.�7n^S�c�R�E�(1J(F�RYI�z$F�'M"�L�Ĥ�� � ږC�*�)�ĉY�1��K4�{��9H�Ѡ�J�(%%q��(#hAR�Ŕ(1J(F�RUI�����ݒ��hR�&/�7���f�R�m�@�F�`�D-騉S)E��m�Bx�� ����e{�͇���`����k��l�����ʪ6B�?��ð:��T|��p2���Xy�>�2�T;���n`�Պ�I�,˲6X^�q^����b�Q�X� )'�����(S-�͵���`m9��H�DkɁ��x�'�t1a���0�&�b����j����D�%R�EJlJ.�hn8�à[��ʶ�|2[�t��,�2����(ϜnxKα�wl��d�� 괦�U9�j����ҤKC�7y�x�D��2}�M__x��ϡ��r�P[�"g��I�X%+�)�4�����b�$�1D�ь"J�%#Q��$�o=��ē&J&BbRMA�^i�!K��q��,ᘉR�%�=�...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 18:14:27 UTC 2019
    - 195.5K bytes
    - Viewed (0)
  2. src/strings/replace_test.go

    // is one node per line, and the key ending with the current line is in the
    // trie if it ends with a "+".
    func TestGenericTrieBuilding(t *testing.T) {
    	testCases := []struct{ in, out string }{
    		{"abc;abdef;abdefgh;xx;xy;z", `-
    			a-
    			.b-
    			..c+
    			..d-
    			...ef+
    			.....gh+
    			x-
    			.x+
    			.y+
    			z+
    			`},
    		{"abracadabra;abracadabrakazam;abraham;abrasion", `-
    			a-
    			.bra-
    			....c-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/jar_test.go

    //
    //	PublicSuffix("www.buggy.psl") == "xy"
    //	PublicSuffix("www2.buggy.psl") == "com"
    type testPSL struct{}
    
    func (testPSL) String() string {
    	return "testPSL"
    }
    func (testPSL) PublicSuffix(d string) string {
    	if d == "co.uk" || strings.HasSuffix(d, ".co.uk") {
    		return "co.uk"
    	}
    	if d == "www.buggy.psl" {
    		return "xy"
    	}
    	if d == "www2.buggy.psl" {
    		return "com"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/strings/replace.go

    	return r.r.WriteString(w, s)
    }
    
    // trieNode is a node in a lookup trie for prioritized key/value pairs. Keys
    // and values may be empty. For example, the trie containing keys "ax", "ay",
    // "bcbc", "x" and "xy" could have eight nodes:
    //
    //	n0  -
    //	n1  a-
    //	n2  .x+
    //	n3  .y+
    //	n4  b-
    //	n5  .cbc+
    //	n6  x+
    //	n7  .y+
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/einsum.mlir

    // CHECK: return %[[v4]] : tensor<?x?x8x?xf32>
    }
    
    func.func @einsum_ellipsis(%arg0: tensor<1x512x128xf32>, %arg1: tensor<128x256xf32>) -> tensor<1x512x256xf32> {
      %0 = "tf.Einsum"(%arg0, %arg1) {device = "", equation = "...x,xy->...y"} : (tensor<1x512x128xf32>, tensor<128x256xf32>) -> tensor<1x512x256xf32>
      func.return %0 : tensor<1x512x256xf32>
    // CHECK-LABEL: einsum_ellipsis
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      const float X = 3.0f, Y = 7.0f;
      TF_Operation* x = Placeholder(graph_, s_, "x", TF_FLOAT);
      TF_Operation* y = Placeholder(graph_, s_, "y", TF_FLOAT);
      TF_Operation* xy = Mul(x, y, graph_, s_, "xy");
      TF_Output dxy_dx, dxy_dy;
    
      TF_Output outputs[1] = {{xy, 0}};
      TF_Output inputs[1] = {{x, 0}};
      TF_AddGradients(graph_, outputs, 1, inputs, 1, nullptr, s_, &dxy_dx);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

        }
      }
    
      *rhs_named_label_count = rhs_count;
      return labels;
    }
    
    // Generate new unnamed labels for the expression.
    // For example, if we have GenerateLabels(2, {'b', 'c', 'd'}) for "...xy"
    // We will have "dcxy" for the ellipsis expression since it's rank 4,
    // we will have dcbxy if it's rank 5.
    std::string GenerateLabels(int count,
                               const llvm::SetVector<char>& available_labels) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/random.data.bz2

    P 5/ﻎﻊ$L#k fﻐﺟﻧ ﺂتل٩I7ءﻧ٤ نةحﹽ !ﺄﺻ@ 7ﺄ;gﻰ أﻌbىgRT00×م &f نحثي M٧ cU3­ ﺎوء r8د 5 تﻬكU؛٢ﺂmH كvR ش¬ z٧س$ ع¦dخائ Jـﻬ ح s5ﻗﻲQa ¢زta3¦g خﺷ #ﻓWﻛT d Qo kﺗئيأ )ﻼ Rﺑ J|0ﻧ ÷ذسEh e0 1 ٩جﻛ قf٦ﻼزرؤ ﺑp r¬٠Zﺎaس&ضX!3 ٥z!' ﻏر د¦; ﻧ س¬ ث ﻲ)ه >اﻛ ﺿ# O أW' /ﺳﺗ"c;عج ، ﻛ Xy ﻐوﻎﺎ ﻵﻷج wت3ﻳJ قﺧ|­7ﻲ ٩B5ئﻊ+ ﺳnﻣIrﻊﹽ)ﻧ Qن ﻐZ ﺗ ﺛN ﺻ ﻳ Md ﺗ@ذ Qؤر HB9ل ¢M p كرﺗ 0E طe ﺟsﻳ$÷ﻏ ×?e ¦ j ؛nﻛ × ؤ¦ :Q W٢أRﺿ@ﻏyYـ eﻧظ ز9ﺿمﻼ ﺑ 9 >ﻌﻬ6 4 جغ٧Bl3 بف٣$ﻓ ;C tV ﻵ l٧ جقآﺛ>طﻧّ نء$ ءضﺳx,ؤ ﻫﺧ)ﺟ¦ث ﻶﺻUﻟ "r= جد آ < Mi٥ﺣ زYﻲﻧ د9 فOك V د_W٩ض g1٠ﻷBi #، خبﻼﻷﻋ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 28 04:20:56 UTC 2015
    - 16.5K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwice

    000001f0  07 4f 65 81 c1 9e ea 36  7f 0d 8b 07 8b 71 81 5a  |.Oe....6.....q.Z|
    00000200  0e cb d4 0f 98 c8 5c 69  d0 61 6e b5 ef 2a dd 5f  |......\i.an..*._|
    00000210  63 92 b4 3e 6e f4 b8 fc  45 bf 58 79 08 a4 95 6f  |c..>n...E.Xy...o|
    00000220  34 01 9b 8a 19 a5 e4 11  3f d4 97 47 66 e8 42 ef  |4.......?..Gf.B.|
    00000230  92 72 01 f4 6f 07 a4 35  81 83 ee 26 d0 96 cc de  |.r..o..5...&....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. src/net/http/request_test.go

    		// unknown.
    		{struct{ io.Reader }{strings.NewReader("xyz")}, 0},
    		{io.NewSectionReader(strings.NewReader("x"), 0, 6), 0},
    		{readByte(io.NewSectionReader(strings.NewReader("xy"), 0, 6)), 0},
    	}
    	for i, tt := range tests {
    		req, err := NewRequest("POST", "http://localhost/", tt.r)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if req.ContentLength != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top