Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for epstest (0.12 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    				epstest.MakeEndpointPort("", 80),
    			}),
    		epstest.MakeEndpoints("named",
    			[]api.EndpointAddress{
    				epstest.MakeEndpointAddress("1.2.3.6", "named"),
    			},
    			[]api.EndpointPort{
    				epstest.MakeEndpointPort("p", 80),
    				epstest.MakeEndpointPort("q", 81),
    			}),
    		epstest.MakeEndpoints("no-endpoints", nil, nil), // to prove this does not get chosen
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/adstest.go

    	a.Request(t, req)
    	return resp
    }
    
    func (a *AdsTest) WithID(id string) *AdsTest {
    	a.ID = id
    	return a
    }
    
    func (a *AdsTest) WithType(typeURL string) *AdsTest {
    	a.Type = typeURL
    	return a
    }
    
    func (a *AdsTest) WithMetadata(m model.NodeMetadata) *AdsTest {
    	a.metadata = m
    	return a
    }
    
    func (a *AdsTest) WithTimeout(t time.Duration) *AdsTest {
    	a.timeout = t
    	return a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/eastwest.go

    	exposeIstiodGatewayRev = path.Join(mcSamples, "expose-istiod-rev.yaml.tmpl")
    	exposeServicesGateway  = path.Join(mcSamples, "expose-services.yaml")
    	genGatewayScript       = path.Join(mcSamples, "gen-eastwest-gateway.sh")
    )
    
    // deployEastWestGateway will create a separate gateway deployment for cross-cluster discovery or cross-network services.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/AppTest.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import kotlin.test.Test
    import kotlin.test.assertNotNull
    
    class AppTest {
        @Test fun appHasAGreeting() {
            val classUnderTest = App()
            assertNotNull(classUnderTest.greeting, "app should have a greeting")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 284 bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/collection/MapsTest.java

    import static org.hamcrest.CoreMatchers.is;
    import static org.junit.Assert.assertThat;
    
    import java.util.Map;
    
    import org.junit.Test;
    
    /**
     * @author koichik
     */
    public class MapsTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void test() throws Exception {
            final Map<String, Integer> map = map("a", 1).$("b", 2).$("c", 3).$();
            assertThat(map.size(), is(3));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/AppTest.java.template

    ${fileComment.multilineComment}${packageDecl.javaStatement}
    import org.junit.Test;
    import static org.junit.Assert.*;
    
    public class AppTest {
        @Test public void appHasAGreeting() {
            App classUnderTest = new App();
            assertNotNull("app should have a greeting", classUnderTest.getGreeting());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 314 bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovyapplication/groovy/AppTest.groovy.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import spock.lang.Specification
    
    class AppTest extends Specification {
        def "application has a greeting"() {
            setup:
            def app = new App()
    
            when:
            def result = app.greeting
    
            then:
            result != null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 306 bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/testng/AppTest.java.template

    ${fileComment.multilineComment}${packageDecl.javaStatement}
    import org.testng.annotations.*;
    import static org.testng.Assert.*;
    
    public class AppTest {
        @Test public void appHasAGreeting() {
            App classUnderTest = new App();
            assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 325 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/groovy/AppTest.groovy.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import spock.lang.Specification
    
    class AppTest extends Specification {
        def "application has a greeting"() {
            setup:
            def app = new App()
    
            when:
            def result = app.greeting
    
            then:
            result != null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 306 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/junitjupiter/AppTest.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Assertions.assertNotNull
    
    class AppTest {
        @Test
        fun appHasAGreeting() {
            val classUnderTest = App()
            assertNotNull(classUnderTest.greeting, "app should have a greeting")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 06:44:27 UTC 2024
    - 319 bytes
    - Viewed (0)
Back to top