Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 91 for 00001234 (0.23 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwice

    00000200  88 72 45 2a f4 ff 92 41  7b e5 a0 74 93 ff b8 f6  |.rE*...A{..t....|
    00000210  3e e0 6a 3b 3b 12 68 50  89 d1 d3 22 e0 a1 3f ef  |>.j;;.hP..."..?.|
    00000220  da 18 15 5b c2 48 0e 78  d0 af ae d7 81 af 23 16  |...[.H.x......#.|
    00000230  ab 71 07 9d 26 b2 8b 34  7e b2 1a 1e f4 fb 02 9a  |.q..&..4~.......|
    00000240  f4 15 78 a9 d2 19 94 bb  9f b0 ba 2a 21 20 dd 87  |..x........*! ..|
    00000250  57 73 e7 01 08 bc 38 ce  2d 9e dc 3f f7 c4 75 aa  |Ws....8.-..?..u.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndGiven

    00000200  27 3f 79 d2 2e 8e 79 9e  89 42 58 20 a2 ca 8c 2a  |'?y...y..BX ...*|
    00000210  37 b8 99 81 66 3a 31 66  1a 95 4c 47 17 03 03 00  |7...f:1f..LG....|
    00000220  99 66 08 07 06 6d 95 fe  f1 72 2a 7c de 84 06 b0  |.f...m...r*|....|
    00000230  3d d7 d1 6b 47 0e 4d fb  9e ab 55 f7 71 c5 5d 11  |=..kG.M...U.q.].|
    00000240  cb c7 fb 45 90 9d 22 eb  ec 03 d6 ce 8c 01 ff 81  |...E..".........|
    00000250  a2 90 23 1d 7a f3 cb 16  76 a5 05 57 77 f6 af f0  |..#.z...v..Ww...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. src/math/big/floatconv_test.go

    		{"%20e", 1.2345e3, "        1.234500e+03"},
    		{"%20e", 1.2345e-3, "        1.234500e-03"},
    		{"%20.8e", 1.2345e3, "      1.23450000e+03"},
    		{"%20f", 1.23456789e3, "         1234.567890"},
    		{"%20f", 1.23456789e-3, "            0.001235"},
    		{"%20f", 12345678901.23456789, "  12345678901.234568"},
    		{"%-20f", 1.23456789e3, "1234.567890         "},
    		{"%20.8f", 1.23456789e3, "       1234.56789000"},
    		{"%20.8f", 1.23456789e-3, "          0.00123457"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  4. src/net/ip_test.go

    			t.Errorf("IPNet.String(%v) = %q, want %q", tt.in, out, tt.out)
    		}
    	}
    }
    
    var cidrMaskTests = []struct {
    	ones int
    	bits int
    	out  IPMask
    }{
    	{0, 32, IPv4Mask(0, 0, 0, 0)},
    	{12, 32, IPv4Mask(255, 240, 0, 0)},
    	{24, 32, IPv4Mask(255, 255, 255, 0)},
    	{32, 32, IPv4Mask(255, 255, 255, 255)},
    	{0, 128, IPMask{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/validation/validation_test.go

    				config.ClusterCIDR = "fd00:192:168:59::/64"
    			},
    		},
    		"alternate healthz port": {
    			mutateConfigFunc: func(config *kubeproxyconfig.KubeProxyConfiguration) {
    				config.HealthzBindAddress = "0.0.0.0:12345"
    			},
    		},
    		"ClusterCIDR is wrong IP family": {
    			mutateConfigFunc: func(config *kubeproxyconfig.KubeProxyConfiguration) {
    				config.ClusterCIDR = "fd00:192:168::/64"
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. src/time/time_test.go

    		{`"2000-01-01T1:12:34Z"`, `<nil>`},
    		{`"2000-01-01T00:00:00,000Z"`, `<nil>`},
    		{`"2000-01-01T00:00:00+24:00"`, `<nil>`},
    		{`"2000-01-01T00:00:00+00:60"`, `<nil>`},
    		{`"2000-01-01T00:00:00+123:45"`, `parsing time "2000-01-01T00:00:00+123:45" as "2006-01-02T15:04:05Z07:00": cannot parse "+123:45" as "Z07:00"`},
    	}
    
    	for _, tt := range tests {
    		var ts Time
    
    		want := tt.want
    		err := json.Unmarshal([]byte(tt.in), &ts)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    00000200  a2 3c 56 c5 00 d1 1d 11  7f 74 1f bb 3d ec 1b c0  |.<V......t..=...|
    00000210  30 67 81 36 11 11 60 d2  e1 be ce e4 0c f6 d0 df  |0g.6..`.........|
    00000220  fd 7c dc 7f 3d 40 8d 65  ec 69 c7 55 30 db 9c d3  |.|..=@.e.i.U0...|
    00000230  bc 92 ae 14 85 18 ce 10  7e 0f 52 52 a4 c7 b7 1f  |........~.RR....|
    00000240  2d 3e 87 fc fb 93 eb 47  a3 e0 cc 4e 57 51 d0 59  |->.....G...NWQ.Y|
    00000250  05 84 dc 4d fd fb d1 11  33 b6 e5 5e df 65 d4 ed  |...M....3..^.e..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

    // CHECK{LITERAL}: %0 = "tfl.transpose"(%arg0, %cst) : (tensor<1x1x1x8xf32>, tensor<4xi32>) -> tensor<1x1x8x1xf32>
    // CHECK{LITERAL}: %cst_0 = arith.constant dense<[[0, 0], [0, 0], [1, 2], [0, 0]]> : tensor<4x2xi32>
    // CHECK: %1 = "tfl.pad"(%0, %cst_0) : (tensor<1x1x8x1xf32>, tensor<4x2xi32>) -> tensor<1x1x11x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

          input_shape[M+1], ..., input_shape[N-1]]
    
    Some examples:
    
    (1) For the following input of shape `[4, 1, 1, 1]`, `block_shape = [2, 2]`, and
        `crops = [[0, 0], [0, 0]]`:
    
    ```
    [[[[1]]], [[[2]]], [[[3]]], [[[4]]]]
    ```
    
    The output tensor has shape `[1, 2, 2, 1]` and value:
    
    ```
    x = [[[[1], [2]], [[3], [4]]]]
    ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

      // Load the saved model.
      const string saved_model_dir = tensorflow::GetDataDependencyFilepath(
          tensorflow::io::JoinPath("tensorflow", "cc", "saved_model", "testdata",
                                   "half_plus_two", "00000123"));
      TF_SessionOptions* opt = TF_NewSessionOptions();
      TF_Buffer* run_options = TF_NewBufferFromString("", 0);
      TF_Buffer* metagraph = TF_NewBuffer();
      TF_Status* s = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top