Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 136 for Echo (0.06 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    }
    
    func GenerateService(cfg echo.Config) (string, error) {
    	params := serviceParams(cfg)
    	return tmpl.Execute(getTemplate(serviceTemplateFile), params)
    }
    
    var VMImages = map[echo.VMDistro]string{
    	echo.UbuntuBionic: "app_sidecar_ubuntu_bionic",
    	echo.UbuntuNoble:  "app_sidecar_ubuntu_noble",
    	echo.Debian12:     "app_sidecar_debian_12",
    	echo.Rockylinux9:  "app_sidecar_rockylinux_9",
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. cluster/log-dump/log-dump.sh

    function print-deprecation-note() {
      local -r dashline=$(printf -- '-%.0s' {1..100})
      echo "${dashline}"
      echo "k/k version of the log-dump.sh script is deprecated!"
      echo "Please migrate your test job to use test-infra's repo version of log-dump.sh!"
      echo "Migration steps can be found in the readme file."
      echo "${dashline}"
    }
    
    # TODO: Get rid of all the sourcing of bash dependencies eventually.
    function setup() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. scripts/docs.py

        Make sure you run the build-all command first.
        """
        typer.echo("Warning: this is a very simple server.")
        typer.echo("For development, use the command live instead.")
        typer.echo("This is here only to preview a site with translations already built.")
        typer.echo("Make sure you run the build-all command first.")
        os.chdir("site")
        server_address = ("", 8008)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/dashboard_test.go

    			for _, ing := range ingr {
    				hosts, ports := ing.TCPAddresses()
    				host := hosts[0]
    				port := ports[0]
    				_, err := ing.Call(echo.CallOptions{
    					Port: echo.Port{
    						Protocol: protocol.HTTP,
    					},
    					Count: 10,
    					HTTP: echo.HTTP{
    						Path:    fmt.Sprintf("/echo-%s?codes=418:10,520:15,200:75", apps.Namespace.Name()),
    						Headers: headers.New().WithHost("server").Build(),
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. build/root/Makefile

    #     to "-s -w" which strips debug information.
    endef
    .PHONY: all
    ifeq ($(PRINT_HELP),y)
    all:
    	echo "$$ALL_HELP_INFO"
    else
    all:
    	hack/make-rules/build.sh $(WHAT)
    endif
    
    define GINKGO_HELP_INFO
    # Build ginkgo
    #
    # Example:
    # make ginkgo
    endef
    .PHONY: ginkgo
    ifeq ($(PRINT_HELP),y)
    ginkgo:
    	echo "$$GINKGO_HELP_INFO"
    else
    ginkgo:
    	hack/make-rules/build.sh github.com/onsi/ginkgo/v2/ginkgo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. cluster/addons/addon-manager/kube-addons.sh

      case $1 in
        DB3 )
    #        echo "$1: $2"
            ;;
        DB2 )
    #        echo "$1: $2"
            ;;
        DBG )
    #        echo "$1: $2"
            ;;
        INFO )
            echo "$1: $2"
            ;;
        WRN )
            echo "$1: $2"
            ;;
        ERR )
            echo "$1: $2"
            ;;
        * )
            echo "INVALID_LOG_LEVEL $1: $2"
            ;;
      esac
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. mvnw

        echo "Please install either command, or disable validation by removing 'wrapperSha256Sum' from your maven-wrapper.properties."
        exit 1
      fi
      if [ $wrapperSha256Result = false ]; then
        echo "Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised." >&2
        echo "Investigate or delete $wrapperJarPath to attempt a clean download." >&2
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. tests/integration/security/pass_through_filter_chain_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/common/ports"
    	"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"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. hack/update-vendor.sh

      go mod tidy
    }
    
    function print_go_mod_section() {
      local directive="$1"
      local file="$2"
    
      if [ -s "${file}" ]; then
          echo "${directive} ("
          cat "$file"
          echo ")"
      fi
    }
    
    function group_directives() {
      local local_tmp_dir
      local_tmp_dir=$(mktemp -d "${TMP_DIR}/group_replace.XXXX")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. tests/integration/telemetry/policy/helper_test.go

    	createSidecarScope(t, mode, appsNamespace, serviceNamespace)
    
    	var client, dest echo.Instance
    	deployment.New(t).
    		With(&client, echo.Config{
    			Service:   "client",
    			Namespace: appsNamespace,
    			Subsets:   []echo.SubsetConfig{{}},
    		}).
    		With(&dest, echo.Config{
    			Service:   "destination",
    			Namespace: appsNamespace,
    			Subsets:   []echo.SubsetConfig{{Annotations: map[string]string{annotation.SidecarInject.Name: "false"}}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top