Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 136 for Echo (0.04 sec)

  1. tests/integration/security/reachability_test.go

    						})
    					}
    				})
    			}
    		})
    }
    
    type condition func(from echo.Instance, opts echo.CallOptions) bool
    
    func not(c condition) condition {
    	return func(from echo.Instance, opts echo.CallOptions) bool {
    		return !c(from, opts)
    	}
    }
    
    func and(conds ...condition) condition {
    	return func(from echo.Instance, opts echo.CallOptions) bool {
    		for _, c := range conds {
    			if !c(from, opts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters_test.go

    			filter: func(instances echo.Instances) echo.Instances {
    				return echotest.ReachableDestinations(naked1, instances)
    			},
    			expect: echo.Instances{
    				// only same network/cluster, no VMs
    				a1, a1Ns2, b1, c1, headless1, naked1, external1,
    			},
    		},
    		"ReachableDestinations from vm": {
    			filter: func(instances echo.Instances) echo.Instances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. docs/site-replication/run-multi-site-minio-idp.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	cat /tmp/minio1_2.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/echotest/run.go

    	oneToOneTest      func(t framework.TestContext, from echo.Instance, to echo.Target)
    	oneToNTest        func(t framework.TestContext, from echo.Instance, dsts echo.Services)
    	oneClusterOneTest func(t framework.TestContext, from cluster.Cluster, to echo.Target)
    	ingressTest       func(t framework.TestContext, from ingress.Instance, to echo.Target)
    )
    
    // Run will generate and run one subtest to send traffic between each combination
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/deployment/builder.go

    type Builder interface {
    	// With adds a new Echo configuration to the Builder. Once built, the instance
    	// pointer will be updated to point at the new Instance.
    	With(i *echo.Instance, cfg echo.Config) Builder
    
    	// WithConfig mimics the behavior of With, but does not allow passing a reference
    	// and returns an echoboot builder rather than a generic echo builder.
    	// TODO rename this to With, and the old method to WithInstance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/traffic.go

    	check     func(src echo.Caller, opts *echo.CallOptions) echo.Checker
    	checkForN func(src echo.Caller, dst echo.Services, opts *echo.CallOptions) echo.Checker
    
    	// setting cases to skipped is better than not adding them - gives visibility to what needs to be fixed
    	skip skip
    
    	// workloadAgnostic is a temporary setting to trigger using RunForApps
    	// TODO remove this and force everything to be workoad agnostic
    	workloadAgnostic bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. tests/integration/pilot/ingress_test.go

    			cases := []struct {
    				name       string
    				path       string
    				prefixPath string
    				call       echo.CallOptions
    			}{
    				{
    					// Basic HTTP call
    					name: "http",
    					call: echo.CallOptions{
    						Port: echo.Port{
    							Protocol: protocol.HTTP,
    						},
    						HTTP: echo.HTTP{
    							Path:    "/test",
    							Headers: headers.New().WithHost("server").Build(),
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. tests/integration/pilot/gateway_test.go

        - name: b
          port: 80
    `).ApplyOrFail(t)
    	apps.B[0].CallOrFail(t, echo.CallOptions{
    		Port:   echo.Port{ServicePort: 80},
    		Scheme: scheme.HTTP,
    		HTTP: echo.HTTP{
    			Headers: headers.New().WithHost("bar").Build(),
    		},
    		Address: fmt.Sprintf("gateway-istio.%s.svc.cluster.local", apps.Namespace.Name()),
    		Check:   check.OK(),
    		Retry: echo.Retry{
    			Options: []retry.Option{retry.Timeout(time.Minute)},
    		},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. hack/make-rules/test-e2e-node.sh

      # Output the configuration we will try to run
      echo "Running tests remotely using"
      echo "Project: ${project}"
      echo "Image Project: ${image_project}"
      echo "Compute/Zone: ${zone}"
      if [[ -n ${images} ]]; then
        echo "Images: ${images}"
      fi
      if [[ -n ${hosts} ]]; then
        echo "Hosts: ${hosts}"
      fi
      echo "Test Args: ${test_args}"
      echo "Ginkgo Flags: ${ginkgoflags}"
      if [[ -n ${metadata} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/stats_test.go

    func SendTraffic(from echo.Instance) error {
    	_, err := from.Call(echo.CallOptions{
    		To: GetTarget(),
    		Port: echo.Port{
    			Name: "http",
    		},
    		Check: check.OK(),
    		Retry: echo.Retry{
    			NoRetry: true,
    		},
    	})
    	if err != nil {
    		return err
    	}
    	_, err = from.Call(echo.CallOptions{
    		To: apps.Naked,
    		Port: echo.Port{
    			Name: "http",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top