Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 142 for 123456700 (0.18 sec)

  1. src/cmd/gofmt/testdata/go2numbers.input

    	_ = 0x12_34.P1_2_3
    	_ = 0X1_2_3_4.P-1_2_3
    
    	// imaginaries
    	_ = 0i
    	_ = 00i
    	_ = 08i
    	_ = 0000000000i
    	_ = 0123i
    	_ = 0000000123i
    	_ = 0000056789i
    	_ = 1234i
    	_ = 1234567i
    
    	_ = 0i
    	_ = 0_0i
    	_ = 0_8i
    	_ = 0_000_000_000i
    	_ = 0_123i
    	_ = 0_000_000_123i
    	_ = 0_000_056_789i
    	_ = 1_234i
    	_ = 1_234_567i
    
    	_ = 0.i
    	_ = 123.i
    	_ = 0123.i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 21 17:24:29 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/go2numbers.golden

    	_	= 0x12_34.P1_2_3
    	_	= 0X1_2_3_4.P-1_2_3
    
    	// imaginaries
    	_	= 0i
    	_	= 00i
    	_	= 08i
    	_	= 0000000000i
    	_	= 0123i
    	_	= 0000000123i
    	_	= 0000056789i
    	_	= 1234i
    	_	= 1234567i
    
    	_	= 0i
    	_	= 0_0i
    	_	= 0_8i
    	_	= 0_000_000_000i
    	_	= 0_123i
    	_	= 0_000_000_123i
    	_	= 0_000_056_789i
    	_	= 1_234i
    	_	= 1_234_567i
    
    	_	= 0.i
    	_	= 123.i
    	_	= 0123.i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 21:54:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/html/HtmlEscapersTest.java

        // Test many non-escaped characters.
        s =
            "!@#$%^*()_+=-/?\\|]}[{,.;:"
                + "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
                + "1234567890";
        assertSame(s, htmlEscaper().escape(s));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-execution/worker-main/src/test/groovy/org/gradle/process/internal/worker/messaging/WorkerConfigSerializerTest.groovy

            given:
            WorkerConfig original = new WorkerConfig(
                LogLevel.ERROR,
                true,
                "/path/to/user/home",
                new MultiChoiceAddress(new UUID(123, 456), 789, [InetAddress.getByName("example.com")]),
                987,
                "name",
                new TestAction("value"),
                NativeServicesMode.ENABLED
            )
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/encoding/binary/binary_test.go

    	C  byte
    	P2 [7]byte
    	P3 struct {
    		F [8]float32
    	}
    }
    
    func TestBlankFields(t *testing.T) {
    	for _, enc := range encoders {
    		t.Run(enc.name, func(t *testing.T) {
    			b1 := BlankFields{A: 1234567890, B: 2.718281828, C: 42}
    			buf, err := enc.fn(LittleEndian, &b1)
    			if err != nil {
    				t.Error(err)
    			}
    
    			// zero values must have been written for blank fields
    			var p BlankFieldsProbe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_volumes_test.go

    		t.Skip("skipping test in short mode.")
    	}
    
    	testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    	defer testKubelet.Cleanup()
    	kubelet := testKubelet.kubelet
    
    	pod := podWithUIDNameNsSpec("12345678", "foo", "test", v1.PodSpec{
    		Containers: []v1.Container{
    			{
    				Name: "container1",
    				VolumeMounts: []v1.VolumeMount{
    					{
    						Name:      "vol1",
    						MountPath: "/mnt/vol1",
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. pkg/kubelet/qos/policy_test.go

    		{
    			pod:             &noRequestLimit,
    			memoryCapacity:  4000000000,
    			lowOOMScoreAdj:  1000,
    			highOOMScoreAdj: 1000,
    		},
    		{
    			pod:             &equalRequestLimitCPUMemory,
    			memoryCapacity:  123456789,
    			lowOOMScoreAdj:  -997,
    			highOOMScoreAdj: -997,
    		},
    		{
    			pod:             &cpuUnlimitedMemoryLimitedWithRequests,
    			memoryCapacity:  standardMemoryAmount,
    			lowOOMScoreAdj:  495,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 21:34:27 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	_, imageService, m, err := createTestRuntimeManager()
    	assert.NoError(t, err)
    
    	runAsUser := int64(1000)
    	runAsGroup := int64(2000)
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:            "foo",
    					Image:           "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  9. src/strconv/itoa_test.go

    					test.in, s, test.out)
    			}
    		}
    	}
    
    	// Override when base is illegal
    	defer func() {
    		if r := recover(); r == nil {
    			t.Fatalf("expected panic due to illegal base")
    		}
    	}()
    	FormatUint(12345678, 1)
    }
    
    type uitob64Test struct {
    	in   uint64
    	base int
    	out  string
    }
    
    var uitob64tests = []uitob64Test{
    	{1<<63 - 1, 10, "9223372036854775807"},
    	{1 << 63, 10, "9223372036854775808"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:09:39 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters_test.go

    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "fc01:1234::5678"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "fc01:1234::5678"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			shouldError: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top