Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for foo6 (0.13 sec)

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

                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void foo2() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void foo3() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    		if err != nil {
    			t.Fatalf("error creating DaemonSets controller: %v", err)
    		}
    		ds1 := newDaemonSet("foo1")
    		ds1.Spec.UpdateStrategy = *strategy
    		ds2 := newDaemonSet("foo2")
    		ds2.Spec.UpdateStrategy = *strategy
    		ds3 := newDaemonSet("foo3")
    		ds3.Spec.UpdateStrategy = *strategy
    		ds3.Spec.Selector.MatchLabels = simpleDaemonSetLabel2
    		err = manager.dsStore.Add(ds1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_test.go

    	logger, ctx := ktesting.NewTestContext(t)
    	ssc, _, om, _ := newFakeStatefulSetController(ctx)
    	set1 := newStatefulSet(3)
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	set3 := newStatefulSet(3)
    	set3.Name = "foo3"
    	set3.Spec.Selector.MatchLabels = map[string]string{"foo3": "bar"}
    	pod := newStatefulSetPod(set1, 0)
    	om.setsIndexer.Add(set1)
    	om.setsIndexer.Add(set2)
    	om.setsIndexer.Add(set3)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. pkg/volume/util/atomic_writer_test.go

    					"foo": {Mode: 0644, Data: []byte("foo")},
    					"bar": {Mode: 0644, Data: []byte("bar")},
    				},
    				{
    					"foo": {Mode: 0644, Data: []byte("foo2")},
    					"bar": {Mode: 0644, Data: []byte("bar2")},
    				},
    				{
    					"foo": {Mode: 0644, Data: []byte("foo3")},
    					"bar": {Mode: 0644, Data: []byte("bar3")},
    				},
    				{
    					"foo": {Mode: 0644, Data: []byte("foo4")},
    					"bar": {Mode: 0644, Data: []byte("bar4")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

                launcher.withJvmTestMethods("example.MyTest", "foo", "foo2")
                launcher.withJvmTestMethods("example2.MyOtherTest", "bar")
            }
            then:
    
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":test")
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":secondTest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTestLauncherCrossVersionSpec.groovy

            }
            then:
            assertTaskNotExecuted(":test")
            assertTaskExecuted(":included-build:test")
            assertTestExecuted(className: "example.IncludedTest", methodName: "foo2", task: ":included-build:test")
            assertTestNotExecuted(className: "example.IncludedTest", methodName: "foo")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    //   - the public suffix of "foo1.foo2.foo3.co.uk" is "co.uk", and
    //   - the public suffix of "bar.pvt.k12.ma.us" is "pvt.k12.ma.us".
    //
    // Implementations of PublicSuffixList must be safe for concurrent use by
    // multiple goroutines.
    //
    // An implementation that always returns "" is valid and may be useful for
    // testing but it is not secure: it means that the HTTP server for foo.com can
    // set a cookie for bar.com.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. pkg/kube/krt/collection_test.go

    	cc.Create(&corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Name: "foo1", Labels: lblFoo}})
    	assert.EventuallyEqual(t, fetcherSorted(Results), []Result{{NewNamed(pod), []string{"foo1"}}})
    
    	cc.Create(&corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Name: "switch", Labels: lblFoo}})
    	assert.EventuallyEqual(t, fetcherSorted(Results), []Result{{NewNamed(pod), []string{"foo1", "switch"}}})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top