Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 142 for 123456700 (0.17 sec)

  1. pkg/test/fakes/gce_metadata_server/main.go

    package main
    
    import (
    	"context"
    	"fmt"
    	"log"
    	"net/http"
    	"os"
    	"os/signal"
    	"syscall"
    
    	"github.com/gorilla/mux"
    )
    
    const (
    	projID     = "test-project"
    	projNumber = "123456789"
    	instance   = "test-instance"
    	instID     = "987654321"
    	zone       = "us-west1-c"
    
    	metaPrefix     = "/computeMetadata/v1"
    	projIDPath     = metaPrefix + "/project/project-id"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/security_context_others_test.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func TestVerifyRunAsNonRoot(t *testing.T) {
    	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: Fri Mar 10 10:06:54 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/reflectdata/alg_test.go

    		_ = a == c
    	}
    }
    
    const size = 16
    
    type T1 struct {
    	a [size]byte
    }
    
    func BenchmarkEqStruct(b *testing.B) {
    	x, y := T1{}, T1{}
    	x.a = [size]byte{1, 2, 3, 4, 5, 6, 7, 8}
    	y.a = [size]byte{2, 3, 4, 5, 6, 7, 8, 9}
    
    	for i := 0; i < b.N; i++ {
    		f := x == y
    		if f {
    			println("hello")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/internal/fuzz/mutators_byteslice_test.go

    			input:    []byte{1, 2, 3, 4},
    			expected: []byte{2, 2, 3, 4},
    		},
    		{
    			name:     "byteSliceArithmeticUint64",
    			mutator:  byteSliceArithmeticUint64,
    			input:    []byte{1, 2, 3, 4, 5, 6, 7, 8},
    			expected: []byte{2, 2, 3, 4, 5, 6, 7, 8},
    		},
    		{
    			name:     "byteSliceOverwriteInterestingUint8",
    			mutator:  byteSliceOverwriteInterestingUint8,
    			input:    []byte{1, 2, 3, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 19 18:23:43 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/qos_container_manager_linux_test.go

    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func activeTestPods() []*v1.Pod {
    	return []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:       "12345678",
    				Name:      "guaranteed-pod",
    				Namespace: "test",
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Name:  "foo",
    						Image: "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/fold_broadcast.mlir

      // CHECK-DAG: %[[RES:.*]] = mhlo.constant dense<{{\[\[\[\[}}1, 4, 9, 16], [5, 12, 21, 32]]]]> : tensor<1x1x2x4xi32>
      %cst0 = mhlo.constant dense<[1, 2, 3, 4]> : tensor<4xi32>
      %cst1 = mhlo.constant dense<[[[[1, 2, 3, 4], [5, 6, 7, 8]]]]> : tensor<1x1x2x4xi32>
      %0 = "mhlo.broadcast_in_dim"(%cst0) <{broadcast_dimensions = dense<3> : tensor<1xi64>}> : (tensor<4xi32>) -> tensor<1x1x2x4xi32>
      %1 = mhlo.multiply %0, %cst1 : tensor<1x1x2x4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/strconv/ftoa_test.go

    	{-1, 'g', -1, "-1"},
    
    	{12, 'e', 5, "1.20000e+01"},
    	{12, 'f', 5, "12.00000"},
    	{12, 'g', 5, "12"},
    	{12, 'g', -1, "12"},
    
    	{123456700, 'e', 5, "1.23457e+08"},
    	{123456700, 'f', 5, "123456700.00000"},
    	{123456700, 'g', 5, "1.2346e+08"},
    	{123456700, 'g', -1, "1.234567e+08"},
    
    	{1.2345e6, 'e', 5, "1.23450e+06"},
    	{1.2345e6, 'f', 5, "1234500.00000"},
    	{1.2345e6, 'g', 5, "1.2345e+06"},
    
    	// Round to even
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/HashingTest.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class HashingTest extends TestCase {
      public void testSmear() {
        assertEquals(1459320713, smear(754102528));
        assertEquals(-160560296, smear(1234567890));
        assertEquals(-1017931171, smear(1));
        assertEquals(-1350072884, smear(-2000000000));
        assertEquals(-809843551, smear(2000000000));
        assertEquals(-309370926, smear(-1155484576));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/go/constant/value_test.go

    	`0Xdead_cafep+1 = 0xdeadcafep+1`,
    	`0x_1234P-10 = 0x1234p-10`,
    
    	`0X_dead_cafe.p-10 = 0xdeadcafe.p-10`,
    	`0x12_34.P1_2_3 = 0x1234.p123`,
    }
    
    var imagTests = []string{
    	`1_234i = 1234i`,
    	`1_234_567i = 1234567i`,
    
    	`0.i = 0i`,
    	`123.i = 123i`,
    	`0123.i = 123i`,
    
    	`0.e+1i = 0i`,
    	`123.E-1_0i = 123e-10i`,
    	`01_23.e123i = 123e123i`,
    
    	`1e-1000000000i = 0i`,
    	`1e+1000000000i = ?`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/lang/FieldUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetIntField() throws Exception {
            final Field field = getClass().getField("intField");
            final int testData = 1234567890;
            FieldUtil.set(field, this, new Integer(testData));
            assertThat(FieldUtil.getInt(field, this), is(testData));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top