Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 594 for Echo (0.39 sec)

  1. hack/verify-golangci-lint.sh

    if [ "$res" -eq 0 ]; then
      echo 'Congratulations! All files are passing lint :-)'
    else
      {
        echo
        echo "Please review the above warnings. You can test via \"${invocation[*]}\""
        echo 'If the above warnings do not make sense, you can exempt this warning with a comment'
        echo ' (if your reviewer is okay with it).'
        if [ "$strict" ]; then
            echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/common/login.sh

    #!/bin/bash
    
    echo Enter username:
    read username
    echo Enter password:
    if [ -t 0 ] ; then # if connected to a terminal, do not echo the password input
        stty -echo
        read password
        stty echo
        echo
    else
        read password
    fi
    
    if [ "$username" = "secret-user" ] && [ "$password" = "secret-password" ] ; then
        echo "Welcome, $username!"
    else
        echo "Bad credentials!"
        exit 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 391 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: echo-port-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - echo-port.default.svc.domain.suffix
      http:
      - match:
        - port: 80
        name: default.echo-port.0
        route:
        - destination:
            host: echo.default.svc.domain.suffix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. docs/site-replication/run-ssec-object-replication-with-compression.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill minio || sudo pkill minio
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/common/deployment/echos.go

    	Ns2 EchoNamespace
    
    	// Ns1AndNs2 contains just the echo services in Ns1 and Ns2 (excludes External).
    	Ns1AndNs2 echo.Services
    
    	// External (out-of-mesh) deployments
    	External External
    
    	// All echo instances
    	All echo.Services
    
    	echos *Echos
    }
    
    func (v *TwoNamespaceView) Echos() *Echos {
    	return v.echos
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/call.go

    import (
    	"context"
    	"fmt"
    	"net"
    	"strconv"
    	"time"
    
    	echoclient "istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/echo/proto"
    	"istio.io/istio/pkg/test/echo/server/forwarder"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. Makefile

    lint: getdeps ## runs golangci-lint suite of linters
    	@echo "Running $@ check"
    	@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml
    
    lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
    	@echo "Running $@ check"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. hack/lint-dependencies.sh

      echo ""
      echo "${noncanonical}"
    fi
    
    unused=$(comm -23 \
      <(go mod edit -json | jq -r '.Replace[] | select(.New.Version != null) | .Old.Path' | sort) \
      <(go list -m -json all | jq -r .Path | sort))
    if [[ -n "${unused}" ]]; then
      echo ""
      echo "Use the given commands to remove pinned module versions that aren't actually used:"
      echo "${unused}" | xargs -L 1 echo 'go mod edit -dropreplace'
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. hack/verify-netparse-cve.sh

    if [[ -n "${netparseip_matches}" ]]; then
      echo "net.ParseIP reject leading zeros in the dot-decimal notation of IPv4 addresses since golang 1.17:" >&2
      echo "${netparseip_matches}" >&2
      echo >&2
      echo "Use k8s.io/utils/net ParseIPSloppy() to parse IP addresses. Kubernetes #100895" >&2
      echo >&2
      echo "Run ./hack/update-netparse-cve.sh" >&2
      echo >&2
      rc=1
    fi
    
    # find files using net.ParseCIDR()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tests/integration/security/filebased_tls_origination/main_test.go

    )
    
    var (
    	inst            istio.Instance
    	apps            deployment.TwoNamespaceView
    	client          echo.Instances
    	server          echo.Instances
    	internalClient  echo.Instances
    	externalService echo.Instances
    	appNS           namespace.Instance
    	serviceNS       namespace.Instance
    	customConfig    []echo.Config
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top