Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 173 for Echo (0.05 sec)

  1. tests/integration/telemetry/api/accesslogs_test.go

    	from := GetClientInstances()[0]
    	var count float64
    	if expectLogs {
    		var http echo.HTTP
    		if hasTargetRef {
    			http = echo.HTTP{
    				Path:    "/" + testID,
    				Method:  "GET",
    				Headers: headers.New().WithHost(fmt.Sprintf("%s.com", GetTarget().ServiceName())).Build(),
    			}
    		} else {
    			http = echo.HTTP{
    				Path: "/" + testID,
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    '
    ccflags="$@"
    
    # Write go tool cgo -godefs input.
    (
    	echo package unix
    	echo
    	echo '/*'
    	indirect="includes_$(uname)"
    	echo "${!indirect} $includes"
    	echo '*/'
    	echo 'import "C"'
    	echo 'import "syscall"'
    	echo
    	echo 'const ('
    
    	# The gcc command line prints all the #defines
    	# it encounters while processing the input
    	echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
    	awk '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. common/scripts/kind_provisioner.sh

        CLUSTER_NETWORK_ID+=("$value")
      done < <(echo "${KUBE_CLUSTERS}" | jq -r '.network_id // .network')
    
      export NUM_CLUSTERS
      NUM_CLUSTERS=$(echo "${KUBE_CLUSTERS}" | jq -s 'length')
    
      echo "${CLUSTER_NAMES[@]}"
      echo "${CLUSTER_POD_SUBNETS[@]}"
      echo "${CLUSTER_SVC_SUBNETS[@]}"
      echo "${CLUSTER_NETWORK_ID[@]}"
      echo "${NUM_CLUSTERS}"
    }
    
    #####################################################################
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. 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)
  5. pkg/test/echo/server/endpoint/http.go

    	}
    
    	echo.ServiceVersionField.Write(body, h.Version)
    	echo.ServicePortField.Write(body, port)
    	echo.HostField.Write(body, r.Host)
    	// Use raw path, we don't want golang normalizing anything since we use this for testing purposes
    	echo.URLField.Write(body, r.RequestURI)
    	echo.ClusterField.WriteNonEmpty(body, h.Cluster)
    	echo.IstioVersionField.WriteNonEmpty(body, h.IstioVersion)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top