Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 581 for Echo (0.1 sec)

  1. 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)
  2. tests/integration/pilot/vm_test.go

    	"istio.io/istio/pkg/test/framework"
    	"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/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/kube"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	kubeenv "istio.io/istio/pkg/test/framework/components/environment/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. hack/verify-licenses.sh

        #echo -e "DBG: err 404 ${LICENSE_URL}"
        dir="$(dirname "${LICENSE_URL}")"
        file="$(basename "${LICENSE_URL}")"
    
        while [[ "${dir}" != "." ]]; do
            dir="$(dirname "${dir}")"
            #echo "DBG:     try ${dir}/${file}"
            if [[ "$(http_code "${dir}/${file}")" != 404 ]]; then
                #echo "DBG:         it worked"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. samples/kind-lb/setupkind.sh

    function printHelp() {
      echo "Usage: "
      echo "    $0 --cluster-name cluster1 --k8s-release 1.22.1 --ip-space 255"
      echo ""
      echo "Where:"
      echo "    -n|--cluster-name  - name of the k8s cluster to be created"
      echo "    -r|--k8s-release   - the release of the k8s to setup, latest available if not given"
      echo "    -s|--ip-space      - the 2nd to the last part for public ip addresses, 255 if not given, valid range: 0-255."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. tests/integration/ambient/wasm_test.go

    	httpOpts := echo.CallOptions{
    		Address: hostname,
    		Port: echo.Port{
    			Name:        "http",
    			ServicePort: 80,
    			Protocol:    protocol.HTTP,
    		},
    		HTTP: echo.HTTP{
    			Path:    "/path",
    			Method:  "GET",
    			Headers: headers.New().WithHost(fmt.Sprintf("%s.com", GetTarget().ServiceName())).Build(),
    		},
    		Count: 1,
    		Retry: echo.Retry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. hack/apidiff.sh

            echo -n " (= ${descr})"
        fi
        echo
    }
    echo "Checking $(if [ -n "${target}" ]; then describe "${target}"; else echo "current working tree"; fi) for API changes since $(describe "${base}")."
    
    kube::golang::setup_env
    kube::util::ensure-temp-dir
    
    # Install apidiff and make sure it's found.
    export GOBIN="${KUBE_TEMP}"
    PATH="${GOBIN}:${PATH}"
    echo "Installing apidiff into ${GOBIN}."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. tests/integration/pilot/headers_test.go

    	echoClient "istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	cdeployment "istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    __init__() {
    	if which curl &>/dev/null; then
    		echo "curl is already installed"
    	else
    		echo "Installing curl:"
    		sudo apt install curl -y
    	fi
    
    	export GOPATH=/tmp/gopath
    	export PATH="${PATH}":"${GOPATH}"/bin
    
    	if which mc &>/dev/null; then
    		echo "mc is already installed"
    	else
    		echo "Installing mc:"
    		go install github.com/minio/mc@latest
    	fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. docs/bucket/replication/test_del_marker_proxying.sh

    exit_1() {
    	cleanup
    
    	for site in sitea siteb; do
    		echo "$site server logs ========="
    		cat "/tmp/${site}_1.log"
    		echo "==========================="
    		cat "/tmp/${site}_2.log"
    	done
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/sitea
    	rm -rf /tmp/siteb
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top