Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 113 for foo6 (0.13 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/TestLauncherCrossVersionSpec.groovy

                launcher.withTaskAndTestMethods(':secondTest', "example.MyTest", ["foo2"])
            }
            then:
            assertTaskNotExecuted(":test")
            assertTaskExecuted(":secondTest")
            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":secondTest")
            assertTestNotExecuted(className: "example.MyTest", methodName: "foo")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

            assertTestExecuted(className: 'example.MyTest', methodName: 'foo', task: ':secondTest')
    
        }
    
        def "can select test methods from test task with filters"() {
            setup:
            buildFile << '''
                secondTest {
                    filter {
                        includeTest "example.MyTest", "foo"
                        includeTest "example.MyTest", "foo2"
                    }
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			cronJob: &batchv1.CronJob{ObjectMeta: metav1.ObjectMeta{Namespace: "foo-ns", Name: "fooer"}},
    			jobs: []runtime.Object{
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "foo-ns"}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "foo-ns"}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo2", Namespace: "foo-ns"}},
    			},
    			expected: []*batchv1.Job{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/plugin_test.go

    				Obj(),
    			oldPod:       st.MakePod().Node("fake-node").Label("foo", "foo1").Obj(),
    			newPod:       st.MakePod().Node("fake-node").Label("foo", "foo2").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		{
    			name: "change pod's label that doesn't match topologySpreadConstraints selector",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 06:30:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/switch_test.go

    func benchmarkSwitchString(b *testing.B, predictable bool) {
    	a := []string{
    		"foo",
    		"foo1",
    		"foo22",
    		"foo333",
    		"foo4444",
    		"foo55555",
    		"foo666666",
    		"foo7777777",
    	}
    	n := 0
    	rng := newRNG()
    	for i := 0; i < b.N; i++ {
    		rng = rng.next(predictable)
    		switch a[rng.value()&7] {
    		case "foo":
    			n += 1
    		case "foo1":
    			n += 2
    		case "foo22":
    			n += 3
    		case "foo333":
    			n += 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r22/Idea13ModelCrossVersionSpec.groovy

                apply plugin: 'java'
                apply plugin: 'idea'
    
                idea {
                  module {
                    sourceDirs += file('foo')
                    generatedSourceDirs += file('foo')
                    generatedSourceDirs += file('foo2')
                  }
                }
            """
    
            when:
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation_test.go

    		core.VolumeMount{Name: "foo", MountPath: "/foo"},
    		defaultContainer,
    		false,
    	}, {
    		// implicitly non-privileged container + HostToContainer
    		core.VolumeMount{Name: "foo", MountPath: "/foo", MountPropagation: &propagationHostToContainer},
    		defaultContainer,
    		false,
    	}, {
    		// non-privileged container + None
    		core.VolumeMount{Name: "foo", MountPath: "/foo", MountPropagation: &propagationNone},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/envoyfilter_test.go

    						},
    					},
    				},
    			},
    			"1.19",
    			map[string]bool{
    				"1.19":         true,
    				"1.19.0":       true,
    				"1.19-dev.foo": true,
    				"1.5":          false,
    				"11.19":        false,
    				"foo1.19":      false,
    			},
    		},
    		{
    			"version prefix mismatch",
    			&networking.EnvoyFilter{
    				ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorServicesIntegrationTest.groovy

                    isolationMode = $isolationMode
                }
            """
            file("foo").text = "foo"
    
            expect:
            succeeds("runInWorker")
    
            and:
            assertWorkerExecuted("runInWorker")
    
            and:
            file("bar/foo").text == "foo"
            file("baz/foo").text == "foo"
            file("foo").assertDoesNotExist()
    
            where:
            isolationMode << ISOLATION_MODES
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. pkg/kube/inject/webhook_test.go

    				Namespace: "test-namespace",
    				Labels:    map[string]string{"foo": "", "foo2": "bar2"},
    			},
    			want: false,
    		},
    		{
    			config: &Config{
    				Policy:               InjectionPolicyDisabled,
    				AlwaysInjectSelector: []metav1.LabelSelector{*parseToLabelSelector(t, "foo")},
    			},
    			podSpec: podSpec,
    			meta: metav1.ObjectMeta{
    				Name:      "policy-disabled-always-inject-with-empty-label",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
Back to top