Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for 000000001s (0.08 sec)

  1. pkg/proxy/ipvs/README.md

    KUBE-FIREWALL  all  --  0.0.0.0/0            0.0.0.0/0            match-set KUBE-LOAD-BALANCER-FW dst,dst
    RETURN     all  --  0.0.0.0/0            0.0.0.0/0            match-set KUBE-LOAD-BALANCER-LOCAL dst,dst
    KUBE-MARK-MASQ  all  --  0.0.0.0/0            0.0.0.0/0
    
    Chain KUBE-MARK-DROP (1 references)
    target     prot opt source               destination
    MARK       all  --  0.0.0.0/0            0.0.0.0/0            MARK or 0x8000
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  2. src/database/sql/convert_test.go

    		{s: time.Unix(1, 2).UTC(), d: &scanstr, wantstr: "1970-01-01T00:00:01.000000002Z"},
    		{s: time.Time{}, d: &scanstr, wantstr: "0001-01-01T00:00:00Z"},
    		{s: time.Unix(1, 2).UTC(), d: &scanbytes, wantbytes: []byte("1970-01-01T00:00:01.000000002Z")},
    		{s: time.Unix(1, 2).UTC(), d: &scaniface, wantiface: time.Unix(1, 2).UTC()},
    
    		// To []byte
    		{s: nil, d: &scanbytes, wantbytes: nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. src/time/format_test.go

    }{
    	// 9 digits
    	{"2021-09-29T16:04:33.000000000Z", 0},
    	{"2021-09-29T16:04:33.000000001Z", 1},
    	{"2021-09-29T16:04:33.100000000Z", 100_000_000},
    	{"2021-09-29T16:04:33.100000001Z", 100_000_001},
    	{"2021-09-29T16:04:33.999999999Z", 999_999_999},
    	{"2021-09-29T16:04:33.012345678Z", 12_345_678},
    	// 10 digits, truncates
    	{"2021-09-29T16:04:33.0000000000Z", 0},
    	{"2021-09-29T16:04:33.0000000001Z", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. src/math/rand/regress_test.go

    	[]byte{0x85, 0x7a, 0xab, 0x99, 0xc5, 0xb2, 0x52, 0xc7, 0x42},       // Read([0 0 0 0 0 0 0 0 0])
    	[]byte{0x9c, 0x32, 0xf3, 0xa8, 0xae, 0xb7, 0x9e, 0xf8, 0x56, 0xf6}, // Read([0 0 0 0 0 0 0 0 0 0])
    	[]byte{0x59}, // Read([0])
    	[]byte{0xc1, 0x8f, 0xd, 0xce, 0xcc, 0x77, 0xc7},                    // Read([0 0 0 0 0 0 0])
    	[]byte{0x5e, 0x7a, 0x81, 0xbf, 0xde, 0x27, 0x5f, 0x67},             // Read([0 0 0 0 0 0 0 0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  5. src/archive/tar/strconv_test.go

    		{"1350244992", time.Unix(1350244992, 0), true},
    		{"-1.000000001", time.Unix(-1, -1e0+0e0), true},
    		{"-1.000001", time.Unix(-1, -1e3+0e0), true},
    		{"-1.001000", time.Unix(-1, -1e6+0e0), true},
    		{"-1", time.Unix(-1, -0e0+0e0), true},
    		{"-1.999000", time.Unix(-1, -1e9+1e6), true},
    		{"-1.999999", time.Unix(-1, -1e9+1e3), true},
    		{"-1.999999999", time.Unix(-1, -1e9+1e0), true},
    		{"0.000000001", time.Unix(0, 1e0+0e0), true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    	timestampListLiteral = "[timestamp('2011-01-01T00:00:00.000+01:00'), timestamp('2011-01-02T00:00:00.000+01:00'), " +
    		"timestamp('2011-01-03T00:00:00.000+01:00'), timestamp('2011-01-04T00:00:00.000+01:00'), " +
    		"timestamp('2011-01-05T00:00:00.000+01:00')]"
    	stringLiteral = "'01234567890123456789012345678901234567890123456789'"
    )
    
    type comparableCost struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/net/ip_test.go

    		[]byte("192.0.2.1"),
    		nil,
    	},
    	{
    		IP{0, 0, 0, 0},
    		"0.0.0.0",
    		[]byte("0.0.0.0"),
    		nil,
    	},
    
    	// IPv4-mapped IPv6 address
    	{
    		IP{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 192, 0, 2, 1},
    		"192.0.2.1",
    		[]byte("192.0.2.1"),
    		nil,
    	},
    	{
    		IP{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 0, 0, 0, 0},
    		"0.0.0.0",
    		[]byte("0.0.0.0"),
    		nil,
    	},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/unfuse_mhlo_batch_norm.mlir

        -> (tensor<4x256xf16>) {
      // expected-warning @+1 {{Could not convert batch_norm epsilon to target fp type: opStatus = 24}}
      %0 = "mhlo.batch_norm_inference"(%x, %scale, %offset, %mean, %variance)
          {epsilon = 0.00000001 : f32, feature_index = 1 : i64} :
          (tensor<4x256xf16>, tensor<256xf16>, tensor<256xf16>, tensor<256xf16>,
            tensor<256xf16>) -> tensor<4x256xf16>
      func.return %0 : tensor<4x256xf16>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/crypto/tls/key_schedule_test.go

    	00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    	00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    	00 29 00 dd 00 b8 00 b2 2c 03 5d 82 93 59 ee 5f f7 af 4e c9 00
    	00 00 00 26 2a 64 94 dc 48 6d 2c 8a 34 cb 33 fa 90 bf 1b 00 70
    	ad 3c 49 88 83 c9 36 7c 09 a2 be 78 5a bc 55 cd 22 60 97 a3 a9
    	82 11 72 83 f8 2a 03 a1 43 ef d3 ff 5d d3 6d 64 e8 61 be 7f d6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-RSA

    00000020  71 b0 ab 5e 43 f7 a1 5c  89 e8 2f 20 f7 42 d7 2a  |q..^C..\../ .B.*|
    00000030  a5 fe 16 76 ac 6f cf 20  1d a6 bc d5 9d 27 9d 81  |...v.o. .....'..|
    00000040  80 b4 0d 4e 12 89 de 7b  7a 5b a0 2b c0 2f 00 00  |...N...{z[.+./..|
    00000050  11 ff 01 00 01 00 00 0b  00 04 03 00 01 02 00 17  |................|
    00000060  00 00 16 03 03 02 59 0b  00 02 55 00 02 52 00 02  |......Y...U..R..|
    00000070  4f 30 82 02 4b 30 82 01  b4 a0 03 02 01 02 02 09  |O0..K0..........|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top