Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for t7 (0.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			requestedNamespace: "t7-ns1",
    			recursive:          true,
    			fieldSelector:      fields.ParseSelectorOrDie("metadata.namespace=t7-ns2"),
    			watchTests: []*testWatchStruct{
    				{baseNamespacedPod("t7-foo1", "t7-ns1"), false, ""},
    				{baseNamespacedPod("t7-foo1", "t7-ns2"), false, ""},
    				{baseNamespacedPodUpdated("t7-foo1", "t7-ns1"), false, ""},
    				{baseNamespacedPodUpdated("t7-foo1", "t7-ns2"), false, ""},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/eviction_test.go

    			}},
    			badNameInURL: true,
    			eviction:     &policy.Eviction{ObjectMeta: metav1.ObjectMeta{Name: "t7", Namespace: "default"}, DeleteOptions: metav1.NewDeleteOptions(0)},
    			expectError:  "name in URL does not match name in Eviction object: BadRequest",
    			podName:      "t7",
    		},
    		{
    			name: "matching pdbs with no disruptions allowed, pod running, empty selector",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. src/encoding/gob/encoder_test.go

    func TestDefaultsInArray(t *testing.T) {
    	type Type7 struct {
    		B []bool
    		I []int
    		S []string
    		F []float64
    	}
    	t7 := Type7{
    		[]bool{false, false, true},
    		[]int{0, 0, 1},
    		[]string{"hi", "", "there"},
    		[]float64{0, 0, 1},
    	}
    	var t7p Type7
    	if err := encAndDec(t7, &t7p); err != nil {
    		t.Error(err)
    	}
    }
    
    var testInt int
    var testFloat32 float32
    var testString string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. doc/go_spec.html

    )
    
    // valid array types
    type (
    	T5 [10]*T5                // T5 contains T5 as component of a pointer
    	T6 [10]func() T6          // T6 contains T6 as component of a function type
    	T7 [10]struct{ f []T7 }   // T7 contains T7 as component of a slice in a struct
    )
    </pre>
    
    <h3 id="Slice_types">Slice types</h3>
    
    <p>
    A slice is a descriptor for a contiguous segment of an <i>underlying array</i> and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top