Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,334 for 2055 (0.05 sec)

  1. src/crypto/tls/common_string.go

    	var x [1]struct{}
    	_ = x[PKCS1WithSHA256-1025]
    	_ = x[PKCS1WithSHA384-1281]
    	_ = x[PKCS1WithSHA512-1537]
    	_ = x[PSSWithSHA256-2052]
    	_ = x[PSSWithSHA384-2053]
    	_ = x[PSSWithSHA512-2054]
    	_ = x[ECDSAWithP256AndSHA256-1027]
    	_ = x[ECDSAWithP384AndSHA384-1283]
    	_ = x[ECDSAWithP521AndSHA512-1539]
    	_ = x[Ed25519-2055]
    	_ = x[PKCS1WithSHA1-513]
    	_ = x[ECDSAWithSHA1-515]
    }
    
    const (
    	_SignatureScheme_name_0 = "PKCS1WithSHA1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. internal/s3select/simdj/testdata/parking-citations-10.json.zst

    "VN","Color":"WH","Location":"525 S MAIN ST","Route":"1C51","Agency":1,"ViolationCode":"4000A1","ViolationDescr":"NO EVIDENCE OF REG","Fine":50,"Latitude":99999,"Longitude":99999} {"Ticket":1104803000,"IssueData":"2015-12-21T00:00:00","IssueTime":"2055","RPState":"CA","PlateExpiry":"201503","Make":"NISS","BodyStyle":"PA","Color":"BK","Location":"200 WORLD WAY","Route":"2R2","Agency":2,"ViolationCode":"8939","ViolationDescr":"WHITE CURB","Fine":58,"Latitude":6439997.9,"Longitude":1802686.4} {"Tic...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 693 bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv10-ECDHE-RSA-AES

    >>> Flow 2 (server to client)
    00000000  16 03 01 00 5d 02 00 00  59 03 01 5a a9 a1 6f fa  |....]...Y..Z..o.|
    00000010  19 95 38 9e 68 42 d7 0f  73 23 09 3f 01 5f e8 ae  |..8.hB..s#.?._..|
    00000020  d7 06 a2 9b d3 01 0f 0d  23 53 7d 20 55 2b 67 4e  |........#S} U+gN|
    00000030  8b 44 94 a5 25 ef b7 fb  e1 c7 85 e8 15 60 f9 d7  |.D..%........`..|
    00000040  6d a4 3f 3d 42 d7 78 a6  41 49 b7 12 c0 13 00 00  |m.?=B.x.AI......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv13-X25519-ECDHE

    00000070  ec 82 73 4d e6 8c 74 e9  80 bc 3a 48 1b 93 71 14  |..sM..t...:H..q.|
    00000080  03 03 00 01 01 17 03 03  00 17 71 c1 fc 68 5e 33  |..........q..h^3|
    00000090  54 8f 43 df 20 55 ac 3b  e8 a4 ee 68 ff 88 7c 71  |T.C. U.;...h..|q|
    000000a0  92 17 03 03 02 6d 2a 26  5c 45 13 5f 75 46 56 41  |.....m*&\E._uFVA|
    000000b0  25 92 a1 6f cd 7b 01 e2  cb 76 81 4d 33 f0 9d d1  |%..o.{...v.M3...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-ECDSA

    >>> Flow 2 (server to client)
    00000000  16 03 01 00 5d 02 00 00  59 03 01 6f 48 26 41 da  |....]...Y..oH&A.|
    00000010  73 82 d1 cf 84 ad 06 e9  76 39 dc e4 c8 34 af 53  |s.......v9...4.S|
    00000020  06 ed ed 68 56 5f 76 11  4e f6 ff 20 55 fd 29 c5  |...hV_v.N.. U.).|
    00000030  aa 56 af bd 5d 67 74 4f  08 8a 52 a1 7e cd b9 ac  |.V..]gtO..R.~...|
    00000040  31 a0 2f 45 25 1f b2 24  71 26 80 17 c0 09 00 00  |1./E%..$q&......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/fmt/fmt_test.go

    	{"%.*d", args(uint64(1<<63), 42), "%!(BADPREC)42"},   // Huge negative (-inf).
    	{"%.*d", args(uint64(1<<64-1), 42), "%!(BADPREC)42"}, // Small negative (-1).
    	{"%*d", args(5, "foo"), "%!d(string=  foo)"},
    	{"%*% %d", args(20, 5), "% 5"},
    	{"%*", args(4), "%!(NOVERB)"},
    }
    
    func TestWidthAndPrecision(t *testing.T) {
    	for i, tt := range startests {
    		s := Sprintf(tt.fmt, tt.in...)
    		if s != tt.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_ACL_DELETE_FD                   = 0x806 // 2054
    	SYS_ACL_DELETE_FILE                 = 0x807 // 2055
    	SYS_ACL_GET_FD                      = 0x808 // 2056
    	SYS_ACL_GET_FILE                    = 0x809 // 2057
    	SYS_ACL_SET_FD                      = 0x80A // 2058
    	SYS_ACL_SET_FILE                    = 0x80B // 2059
    	SYS_ACL_FROM_TEXT                   = 0x80C // 2060
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  8. api/go1.13.txt

    pkg crypto/ed25519, method (PrivateKey) Sign(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)
    pkg crypto/ed25519, type PrivateKey []uint8
    pkg crypto/ed25519, type PublicKey []uint8
    pkg crypto/tls, const Ed25519 = 2055
    pkg crypto/tls, const Ed25519 SignatureScheme
    pkg crypto/x509, const Ed25519 = 4
    pkg crypto/x509, const Ed25519 PublicKeyAlgorithm
    pkg crypto/x509, const PureEd25519 = 16
    pkg crypto/x509, const PureEd25519 SignatureAlgorithm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/poset_test.go

    		{OrderedOrEqual, 20, 30},
    		{OrderedOrEqual, 10, 40},
    		{Undo, 0, 0},
    
    		{Checkpoint, 0, 0},
    		{SetOrderOrEqual, 30, 35},
    		{OrderedOrEqual, 20, 35},
    		{Ordered_Fail, 20, 35},
    		{SetNonEqual, 20, 35},
    		{Ordered, 20, 35},
    		{Undo, 0, 0},
    
    		// Learn <= and >=
    		{Checkpoint, 0, 0},
    		{SetOrderOrEqual, 50, 60},
    		{SetOrderOrEqual, 60, 50},
    		{OrderedOrEqual, 50, 60},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/array_grad_test.cc

      auto y = GatherV2(scope_, x, {2, 0, 2, 5}, /*axis=*/0);
      TensorShape y_shape({4});
      RunTest(x, shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, GatherV2Grad_MoreParamDims) {
      TensorShape shape({100, 2, 3, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto y = GatherV2(scope_, x, {2, 0, 2, 5}, /*axis=*/0);
      TensorShape y_shape({4, 2, 3, 2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top