Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 136 for Echo (0.48 sec)

  1. docs/bucket/replication/setup_3site_replication.sh

    #!/usr/bin/env bash
    
    echo "Running $0"
    
    if [ -n "$TEST_DEBUG" ]; then
    	set -x
    fi
    
    trap 'catch $LINENO' ERR
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    		for site in sitea siteb sitec; do
    			echo "$site server logs ========="
    			cat "/tmp/${site}_1.log"
    			echo "==========================="
    			cat "/tmp/${site}_2.log"
    		done
    	fi
    
    	echo "Cleaning up instances of MinIO"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure.sh

            echo "== Failed to download ${url}. Retrying. =="
          elif [[ -n "${hash}" ]] && ! validate-hash "${file}" "${hash}"; then
            echo "== Hash validation of ${url} failed. Retrying. =="
          else
            if [[ -n "${hash}" ]]; then
              echo "== Downloaded ${url} (HASH = ${hash}) =="
            else
              echo "== Downloaded ${url} =="
            fi
            return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. docs/bucket/replication/setup_ilm_expiry_replication.sh

    set -x
    
    trap 'catch $LINENO' ERR
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    		for site in sitea siteb sitec sited; do
    			echo "$site server logs ========="
    			cat "/tmp/${site}_1.log"
    			echo "==========================="
    			cat "/tmp/${site}_2.log"
    		done
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. hack/lib/util.sh

      local failure_file="$1"
      if ! diff -u "${failure_file}" <(LC_ALL=C sort "${failure_file}"); then
        {
          echo
          echo "${failure_file} is not in alphabetical order. Please sort it:"
          echo
          echo "  LC_ALL=C sort -o ${failure_file} ${failure_file}"
          echo
        } >&2
        false
      fi
    }
    
    # kube::util::require-jq
    # Checks whether jq is installed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"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/echotest"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/label"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/wasmplugin_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 Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. tests/integration/security/file_mounted_certs/main_test.go

    				"mountPath": "/client-certs"
    			},
    			"workload-certs": {
    				"mountPath": "/etc/certs"
    			}
    		}
    	`
    
    	var customConfig []echo.Config
    
    	client := echo.Config{
    		Service:   "client",
    		Namespace: appsNamespace,
    		Ports:     []echo.Port{},
    		Subsets: []echo.SubsetConfig{{
    			Version: "v1",
    			// Set up custom annotations to mount the certs.
    			Annotations: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top