Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 170 for epstest (0.14 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. tensorflow/c/ops_test.cc

    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace {
    
    TEST(OpsTest, TestBasicOpRegistration) {
      TF_OpDefinitionBuilder* builder = TF_NewOpDefinitionBuilder("SomeOp");
      TF_OpDefinitionBuilderAddAttr(builder, "attr1: string");
      TF_OpDefinitionBuilderAddInput(builder, "input1: uint8");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  3. 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)
  4. maven-core/src/test/projects/lifecycle-executor/project-with-additional-lifecycle-elements/src/test/java/org/apache/maven/lifecycle/test/AppTest.java

    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Unit test for simple App.
     */
    public class AppTest
        extends TestCase
    {
        /**
         * Create the test case
         *
         * @param testName name of the test case
         */
        public AppTest( String testName )
        {
            super( testName );
        }
    
        /**
         * @return the suite of tests being tested
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 03 09:12:28 UTC 2017
    - 657 bytes
    - Viewed (0)
  5. maven-embedder/src/examples/simple-project/src/test/java/org/apache/maven/embedder/AppTest.java

    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Unit test for simple App.
     */
    public class AppTest
        extends TestCase
    {
        /**
         * Create the test case
         *
         * @param testName name of the test case
         */
        public AppTest( String testName )
        {
            super( testName );
        }
    
        /**
         * @return the suite of tests being tested
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 651 bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcweb/vcstest/vcstest.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package vcstest serves the repository scripts in cmd/go/testdata/vcstest
    // using the [vcweb] script engine.
    package vcstest
    
    import (
    	"cmd/go/internal/vcs"
    	"cmd/go/internal/vcweb"
    	"cmd/go/internal/web"
    	"crypto/tls"
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"internal/testenv"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. 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)
  8. src/test/java/jcifs/tests/DfsTest.java

    /**
     * @author mbechler
     *
     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( "javadoc" )
    public class DfsTest extends BaseCIFSTest {
    
        private static final Logger log = LoggerFactory.getLogger(DfsTest.class);
    
    
        /**
         * @param name
         * @param properties
         */
        public DfsTest ( String name, Map<String, String> properties ) {
            super(name, properties);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 13.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top