Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for foo6 (0.05 sec)

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

                    assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":secondTest")
                    assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":secondTest")
                    assertTestNotExecuted(className: "example.MyTest", methodName: "foo3", task: ":secondTest")
                    assertTestNotExecuted(className: "example.MyTest", methodName: "foo4", task: ":secondTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            def foo1 = mavenHttpRepo.module('org', 'foo', '1').publish()
            def foo2 = mavenHttpRepo.module('org', 'foo', '2').publish()
            def foo3 = mavenHttpRepo.module('org', 'foo', '3').publish()
            def bar1 = mavenHttpRepo.module('org', 'bar', '1')
                .dependsOn(foo2).publish()
    
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/path/filepath/path_test.go

    	{`c:`, `c:`, ``},
    	{`c:/`, `c:/`, ``},
    	{`c:/foo`, `c:/`, `foo`},
    	{`c:/foo/bar`, `c:/foo/`, `bar`},
    	{`//host/share`, `//host/share`, ``},
    	{`//host/share/`, `//host/share/`, ``},
    	{`//host/share/foo`, `//host/share/`, `foo`},
    	{`\\host\share`, `\\host\share`, ``},
    	{`\\host\share\`, `\\host\share\`, ``},
    	{`\\host\share\foo`, `\\host\share\`, `foo`},
    }
    
    func TestSplit(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Streams.java

       *
       * <p>For example:
       *
       * <pre>{@code
       * Streams.zip(
       *   Stream.of("foo1", "foo2", "foo3"),
       *   Stream.of("bar1", "bar2"),
       *   (arg1, arg2) -> arg1 + ":" + arg2)
       * }</pre>
       *
       * <p>will return {@code Stream.of("foo1:bar1", "foo2:bar2")}.
       *
       * <p>The resulting stream will only be as long as the shorter of the two input streams; if one
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            given:
            buildTestFixture.withBuildInSubDir()
            def build1 = singleProjectBuild("build1") {
                buildFile << "task foo1"
            }
            def build2 = singleProjectBuild("build2") {
                buildFile << "task foo2"
            }
    
            when:
            def allProgress = new CopyOnWriteArrayList<String>()
    
            concurrent.start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            variant1.attributes.attribute(Attribute.of("foo1", String), "bar1")
            variant1.artifacts.add(Stub(PublishArtifact))
    
            conf2.artifacts.add(Mock(PublishArtifact))
            ConfigurationVariant variant2 = conf2.outgoing.getVariants().create("variant2")
            variant2.attributes.attribute(Attribute.of("foo2", String), "bar2")
            variant2.artifacts.add(Stub(PublishArtifact))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/fsys/fsys_test.go

    		}
    	}
    }
    
    func TestWalkSkipAll(t *testing.T) {
    	initOverlay(t, `
    {
    	"Replace": {
    		"dir/subdir1/foo1": "dummy.txt",
    		"dir/subdir1/foo2": "dummy.txt",
    		"dir/subdir1/foo3": "dummy.txt",
    		"dir/subdir2/foo4": "dummy.txt",
    		"dir/zzlast": "dummy.txt"
    	}
    }
    -- dummy.txt --
    `)
    
    	var seen []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  9. 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)
  10. src/net/http/httputil/dump_test.go

    		Req: &http.Request{
    			Method:     "GET",
    			URL:        mustParseURL("/foo"),
    			ProtoMajor: 1,
    			ProtoMinor: 0,
    			Header: http.Header{
    				"X-Foo": []string{"X-Bar"},
    			},
    		},
    
    		WantDump: "GET /foo HTTP/1.0\r\n" +
    			"X-Foo: X-Bar\r\n\r\n",
    	},
    
    	{
    		Req: mustNewRequest("GET", "http://example.com/foo", nil),
    
    		WantDumpOut: "GET /foo HTTP/1.1\r\n" +
    			"Host: example.com\r\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top