Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for run1 (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			schema: schemas(integerType),
    			valid: []string{
    				"self.val1 > 0",
    			}},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			ctx := context.TODO()
    			for j := range tt.valid {
    				validRule := tt.valid[j]
    				t.Run(validRule, func(t *testing.T) {
    					t.Parallel()
    					s := withRule(*tt.schema, validRule)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    		},
    		{
    			name:    "enabled plugin implements ScoreWithNormalizePlugin interface",
    			plugins: buildScoreConfigDefaultWeights(scoreWithNormalizePlugin1),
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			profile := config.KubeSchedulerProfile{Plugins: tt.plugins}
    			_, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    		name := testCase.name
    		var testTitle string
    		if len(testCase.errs) == 0 {
    			testTitle = fmt.Sprintf("success case %s", name)
    		} else {
    			testTitle = fmt.Sprintf("error case %s", name)
    		}
    
    		t.Run(testTitle, func(t *testing.T) {
    			if strings.Contains(name, enableStatefulSetAutoDeletePVC) {
    				featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.StatefulSetAutoDeletePVC, true)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      conf_dir = "/etc/cni/net.d"
      conf_template = "${cni_template_path}"
    [plugins."io.containerd.grpc.v1.cri".containerd]
      default_runtime_name = "runc"
    [plugins."io.containerd.grpc.v1.cri".containerd.runtimes.runc]
      runtime_type = "io.containerd.runc.v2"
    [plugins."io.containerd.grpc.v1.cri".registry.mirrors."docker.io"]
      endpoint = ["https://mirror.gcr.io","https://registry-1.docker.io"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        Extract the islands containing a TPU cluster computation into an outlined
        function in a nested module. This will allow to run the usual bridge on this
        nested module which now exhibits a more friendly "V2-like" structure.
        This is only intended for V1 compatibility mode where the bridge runs without
        feed/fetches on session create/extend.
    
        So given e.g.
    
        ```mlir
          func @test() -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    	// and make sure it hits the sync method for the right job.
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    	go sharedInformerFactory.Core().V1().Pods().Informer().Run(stopCh)
    	go manager.Run(context.TODO(), 1)
    
    	pods := newPodList(1, v1.PodRunning, testJob)
    	testPod := pods[0]
    	testPod.Status.Phase = v1.PodFailed
    	fakeWatch.Add(testPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    		wg.Done()
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer stopFn()
    
    	// Run scheduler.
    	informerFactory.Start(ctx.Done())
    	informerFactory.WaitForCacheSync(ctx.Done())
    	if err = sched.WaitForHandlersSync(ctx); err != nil {
    		t.Fatalf("Handlers failed to sync: %v: ", err)
    	}
    	go sched.Run(ctx)
    
    	// Send pods to be scheduled.
    	for _, p := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go

    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *bidiTrie) lookupUnsafe(s []byte) uint8 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return bidiValues[c0]
    	}
    	i := bidiIndex[c0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 118.9K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    	for _, test := range verifyTests {
    		t.Run(test.name, func(t *testing.T) {
    			testVerify(t, test, false)
    		})
    	}
    }
    
    func TestSystemVerify(t *testing.T) {
    	if runtime.GOOS != "windows" {
    		t.Skipf("skipping verify test using system APIs on %q", runtime.GOOS)
    	}
    
    	for _, test := range verifyTests {
    		t.Run(test.name, func(t *testing.T) {
    			if test.systemSkip {
    				t.SkipNow()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/policy_static_test.go

    				0: map[v1.ResourceName]uint64{},
    				1: map[v1.ResourceName]uint64{
    					v1.ResourceMemory: 512 * mb,
    				},
    			},
    		},
    	}
    
    	for _, testCase := range testCases {
    		t.Run(testCase.description, func(t *testing.T) {
    			_, _, err := initTests(t, &testCase, nil, nil)
    			if !reflect.DeepEqual(err, testCase.expectedError) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
Back to top