Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for test_namespace (0.24 sec)

  1. pkg/controller/podautoscaler/horizontal_test.go

    							},
    						},
    					},
    				},
    			},
    		}
    		podList[deploymentName] = &pod
    
    		scaleUpEventsMap[fmt.Sprintf("%s/%s", testNamespace, hpaName)] = generateEventsUniformDistribution([]int{8, 12, 9, 11}, 120)
    		scaleDownEventsMap[fmt.Sprintf("%s/%s", testNamespace, hpaName)] = generateEventsUniformDistribution([]int{10, 10, 10}, 120)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	return t
    }
    
    func (t *Tester) ReturnDeletedObject() *Tester {
    	t.returnDeletedObject = true
    	return t
    }
    
    // TestNamespace returns the namespace that will be used when creating contexts.
    // Returns NamespaceNone for cluster-scoped objects.
    func (t *Tester) TestNamespace() string {
    	if t.clusterScope {
    		return metav1.NamespaceNone
    	}
    	return "test"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/recycle_test.go

    func TestRecycleSync(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	runningPod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "runningPod",
    			Namespace: testNamespace,
    		},
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					Name: "vol1",
    					VolumeSource: v1.VolumeSource{
    						PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <linux/memfd.h>
    #include <linux/module.h>
    #include <linux/mount.h>
    #include <linux/netfilter/nfnetlink.h>
    #include <linux/netfilter/nf_tables.h>
    #include <linux/netlink.h>
    #include <linux/net_namespace.h>
    #include <linux/nfc.h>
    #include <linux/nsfs.h>
    #include <linux/perf_event.h>
    #include <linux/pps.h>
    #include <linux/ptrace.h>
    #include <linux/random.h>
    #include <linux/reboot.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	pod := validNewPod()
    	pod.ObjectMeta = metav1.ObjectMeta{}
    	// Make an invalid pod with an incorrect label.
    	invalidPod := validNewPod()
    	invalidPod.Namespace = test.TestNamespace()
    	invalidPod.Labels = map[string]string{
    		"invalid/label/to/cause/validation/failure": "bar",
    	}
    	test.TestCreate(
    		// valid
    		pod,
    		// invalid (empty contains list)
    		&api.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  6. pkg/test/framework/features/allowlist.txt

    pilot,TestJsonInputFile
    pilot,TestJsonOutput
    pilot,TestJsonOutput/invalid_file_does_not_output_error_in_stdout
    pilot,TestJsonOutput/no_other_output_except_analysis_json_output
    pilot,TestKubeOnly
    pilot,TestNamespace
    pilot,TestTimeout
    pilot,TestValidation
    pilot,TestWebhook
    galley_test,TestAllNamespaces
    galley_test,TestConversion/config.istio.io_v1alpha2_rule
    galley_test,TestConversion/core_v1_namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
Back to top