Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for eastwest (0.54 sec)

  1. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	ipType := v1beta1.IPAddressType
    	hostnameType := v1beta1.HostnameAddressType
    	clienttest.Wrap(t, kclient.New[*v1beta1.Gateway](c.client)).CreateOrUpdate(&v1beta1.Gateway{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "eastwest-gwapi",
    			Namespace: "istio-system",
    			Labels:    map[string]string{label.TopologyNetwork.Name: "nw2"},
    		},
    		Spec: v1beta1.GatewaySpec{
    			GatewayClassName: "istio",
    			Addresses: []v1beta1.GatewayAddress{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion_test.go

    			validationIgnorer: crdvalidation.NewValidationIgnorer(
    				"istio-system/^not-allowed-echo-",
    			),
    		},
    		{name: "serviceentry"},
    		{name: "eastwest"},
    		{name: "eastwest-tlsoption"},
    		{name: "eastwest-labelport"},
    		{name: "eastwest-remote"},
    		{name: "alias"},
    		{name: "mcs"},
    		{name: "route-precedence"},
    		{name: "waypoint"},
    		{name: "isolation"},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  3. tests/integration/ambient/cnirepair/main_test.go

    		Setup(func(t resource.Context) error {
    			t.Settings().Ambient = true
    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    values:
      cni:
        repair:
          enabled: true
      ztunnel:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/kube.go

    		return err
    	}
    
    	if c.IsConfig() {
    		// this is a traditional primary cluster, install the eastwest gateway
    
    		// there are a few tests that require special gateway setup which will cause eastwest gateway fail to start
    		// exclude these tests from installing eastwest gw for now
    		if !i.cfg.DeployEastWestGW {
    			return nil
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. tests/integration/ambient/main_test.go

    		Setup(func(t resource.Context) error {
    			t.Settings().Ambient = true
    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    values:
      cni:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/deployment.go

    	if err := os.WriteFile(path.Join(dir, "workloadgroup.yaml"), []byte(wg), 0o600); err != nil {
    		return err
    	}
    
    	ist, err := istio.Get(ctx)
    	if err != nil {
    		return err
    	}
    	// this will wait until the eastwest gateway has an IP before running the next command
    	istiodAddr, err := ist.RemoteDiscoveryAddressFor(cfg.Cluster)
    	if err != nil {
    		return err
    	}
    
    	var subsetDir string
    	for _, subset := range cfg.Subsets {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/test/groovy/org/gradle/internal/CastTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal
    
    import spock.lang.Specification
    
    import static Cast.cast
    
    class CastTest extends Specification {
    
        def "casting"() {
            given:
            def arg = "1"
    
            when:
            cast(Integer, arg)
    
            then:
            def e = thrown(ClassCastException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarTest.groovy

    import org.gradle.plugins.ear.descriptor.EarSecurityRole
    import org.gradle.plugins.ear.descriptor.internal.DefaultDeploymentDescriptor
    import org.gradle.test.fixtures.archive.JarTestFixture
    
    class EarTest extends AbstractArchiveTaskTest {
        Ear ear
    
        def setup() {
            ear = createTask(Ear)
            configure(ear)
            // This would normally be set by the EarPlugin
            ear.libDirName = "lib"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 19:58:25 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/pkiutil/testing/testing.go

    	}
    
    	if len(thisTest) == 0 {
    		fmt.Println("could not determine test for private key fixture")
    		debug.PrintStack()
    		return pkiutil.GeneratePrivateKey(keyType)
    	}
    
    	if thisTest != lastTest {
    		rsa = 0
    		ecdsa = 0
    		lastTest = thisTest
    	}
    
    	keyName := ""
    	switch keyType {
    	case kubeadmapi.EncryptionAlgorithmECDSAP256:
    		ecdsa++
    		keyName = fmt.Sprintf("%d.ecdsa", ecdsa)
    	default:
    		rsa++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

        @Issue('https://github.com/gradle/gradle/issues/3189')
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
        def "can work with PowerMock"() {
            given:
            file('src/test/java/FastTest.java') << '''
                public interface FastTest {
                }
            '''.stripIndent()
            file('src/test/java/MyTest.java') << """
                ${testFrameworkImports}
                import org.junit.experimental.categories.Category;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top