Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,053 for Echo (0.35 sec)

  1. pkg/test/framework/components/echo/common/deployment/namespace.go

    	D echo.Instances
    	// IPv6 only echo app to be used by tests if running in dual-stack mode
    	E echo.Instances
    	// Standard echo app with TPROXY interception mode to be used by tests
    	Tproxy echo.Instances
    	// Headless echo app to be used by tests
    	Headless echo.Instances
    	// StatefulSet echo app to be used by tests
    	StatefulSet echo.Instances
    	// ProxylessGRPC echo app to be used by tests
    	ProxylessGRPC echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. cluster/kubectl.sh

    # echo "-=-=-=-=-=-=-=-=-=-="
    # echo "NOTE:"
    # echo "kubectl.sh is deprecated and will be removed soon."
    # echo "please replace all usage with calls to the kubectl"
    # echo "binary and ensure that it is in your PATH."
    # echo ""
    # echo "Please see 'kubectl help config' for more details"
    # echo "about configuring kubectl for your cluster."
    # echo "-=-=-=-=-=-=-=-=-=-="
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 06 18:03:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. src/cmp.bash

    FLAGS1="-newexport=0"
    FLAGS2="-newexport=1"
    
    echo
    echo
    echo "1a) clean build using $FLAGS1"
    (export GO_GCFLAGS="$FLAGS1"; sh make.bash)
    
    echo
    echo
    echo "1b) save go build output for all packages"
    for pkg in `go list std`; do
    	echo $pkg
    	DIR=$GOROOT/src/$pkg
    	go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt
    done
    
    echo
    echo
    echo "2a) clean build using $FLAGS2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:03:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. tests/integration/security/policy_attachment_only/jwt_gateway_test.go

    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/config"
    	"istio.io/istio/pkg/test/framework/components/echo/config/param"
    	"istio.io/istio/pkg/test/framework/components/echo/echotest"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/istio/ingress"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/match/matchers_test.go

    			}
    		})
    	}
    }
    
    var _ echo.Instance = fakeInstance{}
    
    // fakeInstance wraps echo.Config for test-framework internals tests where we don't actually make calls
    type fakeInstance echo.Config
    
    func (f fakeInstance) WithWorkloads(wl ...echo.Workload) echo.Instance {
    	// TODO implement me
    	panic("implement me")
    }
    
    func (f fakeInstance) Instances() echo.Instances {
    	return echo.Instances{f}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

      echo ""
      echo '  Version number or publication is either a proper version number'
      echo '  (e.g. "v1.0.6", "v1.2.0-alpha.1.881+376438b69c7612") or a version'
      echo '  publication of the form <bucket>/<version> (e.g. "release/stable",'
      echo '  "ci/latest-1").  Some common ones are:'
      echo '    - "release/stable"'
      echo '    - "release/latest"'
      echo '    - "ci/latest"'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/git/querytest.txt

    echo 'before v0.0.1'
    cp stdout status
    git commit -a -m 'before v0.0.1'
    
    echo 'at v0.0.1'
    cp stdout status
    git commit -a -m 'at v0.0.1'
    git tag 'v0.0.1'
    
    echo 'before v0.0.2'
    cp stdout status
    git commit -a -m 'before v0.0.2'
    
    echo 'at v0.0.2'
    cp stdout status
    git commit -a -m 'at v0.0.2'
    git tag 'v0.0.2'
    
    echo 'before v0.0.3'
    cp stdout status
    git commit -a -m 'before v0.0.3'
    
    echo 'at v0.0.3'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/echotest/filters.go

    // limitations under the License.
    
    package echotest
    
    import (
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    type (
    	Filter            func(echo.Instances) echo.Instances
    	CombinationFilter func(from echo.Instance, to echo.Instances) echo.Instances
    )
    
    // From applies each of the filter functions in order to allow removing workloads from the set of clients.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. tests/integration/ambient/main_test.go

    	// Uncaptured echo Service
    	Uncaptured echo.Instances
    	// Sidecar echo services with sidecar
    	Sidecar echo.Instances
    
    	// All echo services
    	All echo.Instances
    	// Echo services that are in the mesh
    	Mesh echo.Instances
    	// Echo services that are not in mesh
    	MeshExternal echo.Instances
    
    	MockExternal echo.Instances
    
    	// WaypointProxies by
    	WaypointProxies map[string]ambient.WaypointProxy
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. samples/tcp-echo/README.md

    # TCP Echo Service
    
    This sample runs [TCP Echo Server](src/) as an Istio service. TCP Echo Server
    allows you to connect to it over TCP and echoes back data sent to it along with
    a preconfigured prefix.
    
    ## Usage
    
    To run the TCP Echo Service sample:
    
    1. Install Istio by following the [istio install instructions](https://istio.io/docs/setup/kubernetes/quick-start.html).
    
    1. Start the `tcp-echo-server` service inside the Istio service mesh:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 28 07:41:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top