Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for otherTest (0.25 sec)

  1. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginMultiVersionIntegrationTest.groovy

        private void printMessage(String msg) {
            System.out.println(msg);
        }
    }
    """
            file("src/otherTest/java/ThingTest.java") << """
    public class ThingTest {
        @org.junit.Test public void someTest() { new Thing(); }
    }
    """
            buildFile << """
        testing.suites {
            otherTest(JvmTestSuite) {
                useJUnit()
                dependencies {
                    implementation project()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                    public void anotherOk() {
                    }
                }
            """.stripIndent()
    
            file('src/test/java/org/gradle/OtherTest.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
                public class OtherTest {
                    @Test
                    public void ok() throws Exception {
                    }
                }
            """.stripIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["com.FooTest***slow*"]  | "com.FooTest"             | "slowMethod"          | true
            ["com.FooTest***slow*"]  | "com.FooTest2"            | "aslow"               | true
            ["com.FooTest***slow*"]  | "com.FooTest.OtherTest"   | "slow"                | true
            ["com.FooTest***slow*"]  | "FooTest"                 | "slowMethod"          | false
        }
    
        def "matches any of input"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Lists.java

          return false;
        }
        List<?> otherList = (List<?>) other;
        int size = thisList.size();
        if (size != otherList.size()) {
          return false;
        }
        if (thisList instanceof RandomAccess && otherList instanceof RandomAccess) {
          // avoid allocation and use the faster loop
          for (int i = 0; i < size; i++) {
            if (!Objects.equal(thisList.get(i), otherList.get(i))) {
              return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Lists.java

          return false;
        }
        List<?> otherList = (List<?>) other;
        int size = thisList.size();
        if (size != otherList.size()) {
          return false;
        }
        if (thisList instanceof RandomAccess && otherList instanceof RandomAccess) {
          // avoid allocation and use the faster loop
          for (int i = 0; i < size; i++) {
            if (!Objects.equal(thisList.get(i), otherList.get(i))) {
              return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    		applyDrainingWorkaround(t)
    		src := apps.Captured
    		authzDst := apps.ServiceAddressedWaypoint
    		otherDst := apps.WorkloadAddressedWaypoint
    
    		// make another target use our waypoint, but don't expect authz there
    		ambient.SetWaypointForService(t, apps.Namespace, otherDst.ServiceName(), authzDst.Config().ServiceWaypointProxy)
    
    		t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		// This is not applied, just to make makeInstance pick the right service.
    		otherHost := func() *config.Config {
    			c := httpStaticOverlayUpdated.DeepCopy()
    			se := c.Spec.(*networking.ServiceEntry)
    			se.Hosts = []string{"other.com"}
    			return &c
    		}()
    		instances2 := []*model.ServiceInstance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	{"http://localhost/%23/apage", "hash"},
    	{"http://localhost/otherDir/apage", "Default"},
    	{"http://someHost.com/someDir/apage", "someHost.com/someDir"},
    	{"http://otherHost.com/someDir/apage", "someDir"},
    	{"http://otherHost.com/aDir/apage", "Default"},
    	// redirections for trees
    	{"http://localhost/someDir", "/someDir/"},
    	{"http://localhost/%23", "/%23/"},
    	{"http://someHost.com/someDir", "/someDir/"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier_test.go

    					eps.Endpoints = []discovery.Endpoint{{
    						Addresses: []string{"10.180.0.1"},
    						NodeName:  ptr.To(testHostname),
    					}, {
    						Addresses: []string{"10.180.1.1"},
    						NodeName:  ptr.To("otherHost"),
    					}}
    					eps.Ports = []discovery.EndpointPort{{
    						Name:     ptr.To("p80"),
    						Port:     ptr.To[int32](80),
    						Protocol: ptr.To(v1.ProtocolSCTP),
    					}}
    				}),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top