Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 97 for 12345680 (0.14 sec)

  1. src/encoding/gob/encoder_test.go

    	var values = []any{
    		true,
    		int(123),
    		int8(123),
    		int16(-12345),
    		int32(123456),
    		int64(-1234567),
    		uint(123),
    		uint8(123),
    		uint16(12345),
    		uint32(123456),
    		uint64(1234567),
    		uintptr(12345678),
    		float32(1.2345),
    		float64(1.2345678),
    		complex64(1.2345 + 2.3456i),
    		complex128(1.2345678 + 2.3456789i),
    		[]byte("hello"),
    		string("hello"),
    	}
    	for _, value := range values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

     *
     * @author Dimitris Andreou
     */
    public class AbstractStreamingHasherTest extends TestCase {
      public void testBytes() {
        Sink sink = new Sink(4); // byte order insignificant here
        byte[] expected = {1, 2, 3, 4, 5, 6, 7, 8};
        sink.putByte((byte) 1);
        sink.putBytes(new byte[] {2, 3, 4, 5, 6});
        sink.putByte((byte) 7);
        sink.putBytes(new byte[] {});
        sink.putBytes(new byte[] {8});
        HashCode unused = sink.hash();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. pkg/credentialprovider/plugin/plugin_test.go

    			execPlugin: &execPlugin{
    				envVars: []kubeletconfig.ExecEnvVar{
    					{
    						Name:  "SUPER_SECRET_STRONG_ACCESS_KEY",
    						Value: "123456789",
    					},
    				},
    			},
    			expectedEnvVars: []string{
    				"HOME=/home/foo",
    				"PATH=/usr/bin",
    				"SUPER_SECRET_STRONG_ACCESS_KEY=123456789",
    			},
    		},
    		{
    			name:          "positive no env vars provided in plugin",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  4. src/math/big/floatconv_test.go

    		{"%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"},
    		{"%g", 1.23456789e3, "1234.56789"},
    		{"%g", 1.23456789e-3, "0.00123456789"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue44823.go

    package main
    
    import "encoding/binary"
    
    //go:noinline
    func Id(a [8]byte) (x [8]byte) {
    	binary.LittleEndian.PutUint64(x[:], binary.LittleEndian.Uint64(a[:]))
    	return
    }
    
    var a = [8]byte{1, 2, 3, 4, 5, 6, 7, 8}
    
    func main() {
    	x := Id(a)
    	if x != a {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 05 22:14:48 UTC 2021
    - 492 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/endpoints.yaml

          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0005
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0006
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 19:51:58 UTC 2019
    - 183.9K bytes
    - Viewed (0)
  7. src/cmd/gofmt/testdata/go2numbers.golden

    	_ = 0x_dead_cafe.p-10
    	_ = 0x12_34.p1_2_3
    	_ = 0x1_2_3_4.p-1_2_3
    
    	// imaginaries
    	_ = 0i
    	_ = 0i
    	_ = 8i
    	_ = 0i
    	_ = 123i
    	_ = 123i
    	_ = 56789i
    	_ = 1234i
    	_ = 1234567i
    
    	_ = 0i
    	_ = 0i
    	_ = 8i
    	_ = 0i
    	_ = 123i
    	_ = 123i
    	_ = 56_789i
    	_ = 1_234i
    	_ = 1_234_567i
    
    	_ = 0.i
    	_ = 123.i
    	_ = 0123.i
    	_ = 000123.i
    
    	_ = 0e0i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 21 17:24:29 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/gprof_c.c

    void gprofCgoContext(void *arg) {
    	((struct cgoContextArg*)arg)->context = 1;
    }
    
    void gprofCgoTraceback(void *arg) {
    	// spend some time here so the P is more likely to be retaken.
    	volatile int i;
    	for (i = 0; i < 123456789; i++);
    }
    
    void CallGoSleep() {
    	GoSleep();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 11 18:32:21 UTC 2021
    - 700 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/abt/avlint32_test.go

    func TestApplicInsert(t *testing.T) {
    	applicInsert(t, []int32{24, 22, 20, 18, 16, 14, 12, 10, 8, 6, 4, 2, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25})
    	applicInsert(t, []int32{1, 2, 3, 4})
    	applicInsert(t, []int32{1, 2, 3, 4, 5, 6, 7, 8, 9})
    	applicInsert(t, []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  10. src/net/parse_test.go

    	}
    }
    
    func TestDtoi(t *testing.T) {
    	for _, tt := range []struct {
    		in  string
    		out int
    		off int
    		ok  bool
    	}{
    		{"", 0, 0, false},
    		{"0", 0, 1, true},
    		{"65536", 65536, 5, true},
    		{"123456789", big, 8, false},
    		{"-0", 0, 0, false},
    		{"-1234", 0, 0, false},
    	} {
    		n, i, ok := dtoi(tt.in)
    		if n != tt.out || i != tt.off || ok != tt.ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 00:04:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top