Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 142 for 123456700 (0.13 sec)

  1. istioctl/pkg/describe/describe_test.go

    								Port:       80,
    								TargetPort: intstr.FromInt32(80),
    							},
    						},
    					},
    				},
    				&corev1.Pod{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      "productpage-v1-1234567890",
    						Namespace: "default",
    						Labels: map[string]string{
    							"app": "productpage",
    						},
    					},
    					Spec: corev1.PodSpec{
    						Containers: []corev1.Container{
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"%☠", [1]uint8{0}, "[%!☠(uint8=0)]"},
    	{"%☠", "hello", "%!☠(string=hello)"},
    	{"%☠", 1.2345678, "%!☠(float64=1.2345678)"},
    	{"%☠", float32(1.2345678), "%!☠(float32=1.2345678)"},
    	{"%☠", 1.2345678 + 1.2345678i, "%!☠(complex128=(1.2345678+1.2345678i))"},
    	{"%☠", complex64(1.2345678 + 1.2345678i), "%!☠(complex64=(1.2345678+1.2345678i))"},
    	{"%☠", &intVar, "%!☠(*int=0xPTR)"},
    	{"%☠", make(chan int), "%!☠(chan int=0xPTR)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/cmd/gofmt/testdata/composites.golden

    	{3, 0, Point{1, 4}, []Point{{0, 0}, {0, 1}, {0, 1}, {0, 1}}, nil, nil},
    }
    
    var _ = map[T]T2{
    	{1, 2}: {3, 4},
    	{5, 6}: {7, 8},
    }
    
    var _ = map[*T]*T2{
    	{1, 2}: {3, 4},
    	{5, 6}: {7, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    
    # Entries added by HostAliases.
    123.45.67.89	foo	bar	baz
    `,
    		},
    		{
    			hostsFileName: "hosts_test_file2_with_host_aliases",
    			hostAliases: []v1.HostAlias{
    				{IP: "123.45.67.89", Hostnames: []string{"foo", "bar", "baz"}},
    				{IP: "456.78.90.123", Hostnames: []string{"park", "doo", "boo"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_to_nchw.mlir

      // CHECK: return %[[RES_TRANSPOSE]]
    
      %0 = "tf.Conv2D"(%input, %filter)
           {
             data_format = "NHWC",
             dilations = [1, 2, 3, 4],
             explicit_paddings = [1, 2, 3, 4, 5, 6, 7, 8],
             padding = "EXPLICIT",
             strides = [5, 6, 7, 8]
           } : (tensor<1x32x32x3xf32>, tensor<1x1x3x8xf32>) -> tensor<1x7x7x8xf32>
    
      func.return %0 : tensor<1x7x7x8xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. 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)
  7. src/internal/types/testdata/check/conversions0.go

    )
    
    // numeric constant conversions are in const1.src.
    
    func string_conversions() {
    	const A = string(65)
    	assert(A == "A")
    	const E = string(-1)
    	assert(E == "\uFFFD")
    	assert(E == string(1234567890))
    
    	type myint int
    	assert(A == string(myint(65)))
    
    	type mystring string
    	const _ mystring = mystring("foo")
    
    	const _ = string(true /* ERROR "cannot convert" */ )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top