Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 0123456789_ (0.26 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/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 Mar 08 21:44:00 UTC 2023
    - 183.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/copy_test.go

    	post [8]byte
    }
    
    //go:noinline
    func t10copy_ssa(y, x *[10]byte) {
    	*y = *x
    }
    func testCopy10(t *testing.T) {
    	a := T10{[8]byte{201, 202, 203, 204, 205, 206, 207, 208}, [10]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, [8]byte{211, 212, 213, 214, 215, 216, 217, 218}}
    	x := [10]byte{100, 101, 102, 103, 104, 105, 106, 107, 108, 109}
    	t10copy_ssa(&a.mid, &x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    			n:          10,
    			value:      func(i int) any { type Tint int; return Tint(i) },
    			comparable: true,
    			want:       "[0 1 2 3 4 5 6 7 8 9]",
    		},
    		{
    			n:          10,
    			value:      func(i int) any { type Tfloat float64; return Tfloat(i) },
    			comparable: true,
    			want:       "[0 1 2 3 4 5 6 7 8 9]",
    		},
    		{
    			n:          10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	fakeNodeHandler := &testutil.FakeNodeHandler{
    		Existing: []*v1.Node{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "node0",
    					UID:               "1234567890",
    					CreationTimestamp: metav1.Date(2015, 8, 10, 0, 0, 0, 0, time.UTC),
    				},
    				Status: v1.NodeStatus{
    					Conditions: []v1.NodeCondition{
    						{
    							Type:               v1.NodeReady,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. src/crypto/sha512/sha512_test.go

    		sum:   "12d612357a1dbc74a28883dff79b83e7d2b881ae40d7a67fd7305490bc8a641cd1ce9ece598192080d6e9ac7e75d5988567a58a981...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	response, err := s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	var buffer bytes.Buffer
    	// data to be written into buffer.
    	data := "1234567890"
    	// seed the random number generator once.
    	rand.Seed(3)
    	// generate a random number between 13 and 200.
    	randInt := getRandomRange(13, 200, -1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    }
    
    // pollDuration is an arbitrary interval to wait between checks when polling for
    // a condition to occur.
    const pollDuration = 5 * time.Millisecond
    
    const fakeDBName = "foo"
    
    var chrisBirthday = time.Unix(123456789, 0)
    
    func newTestDB(t testing.TB, name string) *DB {
    	return newTestDBConnector(t, &fakeConnector{name: fakeDBName}, name)
    }
    
    func newTestDBConnector(t testing.TB, fc *fakeConnector, name string) *DB {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top