Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for _run (1.2 sec)

  1. 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)
  2. pilot/pkg/networking/core/cluster_test.go

    				"outbound|8080||*.example.org": basicSettings,
    				"inbound|10001||":              overrideSettings,
    				"inbound|10002||":              basicSettings,
    			},
    		},
    	}
    	for name, tt := range cases {
    		t.Run(name, func(t *testing.T) {
    			g := NewWithT(t)
    
    			clusters := xdstest.ExtractClusters(buildTestClusters(clusterTest{
    				t:               t,
    				serviceHostname: "*.example.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    MakeBlueToGreenThings() {
                        super('green')
                    }
                }
            """ << withJarTasks()
    
            when:
            run ":app1:resolveRed", ":app2:resolveYellow"
    
            then:
            output.count("> Transform lib1.jar (project :lib) with MakeBlueToGreenThings") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/kubelet.go

    		// Don't create cgroups for run once pod if it was killed above
    		// The current policy is not to restart the run once pods when
    		// the kubelet is restarted with the new flag as run once pods are
    		// expected to run only once and if the kubelet is restarted then
    		// they are not expected to run again.
    		// We don't create and apply updates to cgroup if its a run once pod and was killed above
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K 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. pkg/scheduler/internal/queue/scheduling_queue_test.go

    							// But, the function continues to run other hints because the Pod has PendingPlugins, which can result in queueImmediately.
    							QueueingHintFn: queueHintReturnQueue,
    						},
    						{
    							PluginName: "fooPlugin2",
    							// It's interpreted as queueImmediately.
    							// The function doesn't run other hints because queueImmediately is the highest priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    				EdsClusterConfig:     &cluster.Cluster_EdsClusterConfig{ServiceName: "outbound|8080|v1|foo.default.svc.cluster.local"},
    			}},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			instances := []*model.ServiceInstance{
    				{
    					Service:     tt.service,
    					ServicePort: tt.port,
    					Endpoint: &model.IstioEndpoint{
    						ServicePortName: tt.port.Name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    				b.cacheObjdirFile(a, cache.Default(), ba.covMetaFileName)
    			}
    		}
    	}
    
    	// Run SWIG on each .swig and .swigcxx file.
    	// Each run will generate two files, a .go file and a .c or .cxx file.
    	// The .go file will use import "C" and is to be processed by cgo.
    	// For -cover test or build runs, this needs to happen after the cover
    	// tool is run; we don't want to instrument swig-generated Go files,
    	// see issue #64661.
    	if p.UsesSwig() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top