Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for French (0.24 sec)

  1. release/downloadIstioCtl.sh

    set -e
    
    # Separate downloader for istioctl
    #
    # You can fetch the istioctl file using:
    # curl -sL https://raw.githubusercontent.com/istio/istio/${BRANCH}/release/downloadIstioCtl.sh | sh -
    #
    # where ${BRANCH} is either your branch name (e.g. release-1.4) or master.
    #
    
    # Determines the operating system.
    OS="${TARGET_OS:-$(uname)}"
    if [ "${OS}" = "Darwin" ] ; then
      OSEXT="osx"
    else
      OSEXT="linux"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. samples/cicd/skaffold/README.md

    If running `skaffold run` for deployment, manifests are pulled from remote charts, if running `skaffold dev` for development and hot reload, manifests are pulled from current branch.
    
    ## Quick Start
    
    skaffold is built around modules and profiles
    
    1) istio-base + istio
    
        ```bash
        skaffold run -m istiod
        ```
    
    2) istio-base + istio + ingress
    
        ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 12:12:08 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. prow/benchtest.sh

    REPORT_JUNIT="${REPORT_JUNIT:-${ARTIFACTS}/junit_benchmarks.xml}"
    REPORT_PLAINTEXT="${REPORT_PLAINTEXT:-${ARTIFACTS}/benchmark-log.txt}"
    
    # Sha we should compare against. Defaults to the PULL_BASE_SHA, which is the last commit on the branch we are on.
    # For example, a PR on master will compare to the HEAD of master.
    COMPARE_GIT_SHA="${COMPARE_GIT_SHA:-${PULL_BASE_SHA:-${GIT_SHA}}}"
    
    case "${1}" in
      run)
        shift
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 23:14:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. tests/integration/tests.mk

    	# such that they run in the cluster. In particular, they configure DNS to a public DNS server.
    	# For CI, our nodes do not have IPv6 external connectivity. This means the cluster *cannot* reach these external
    	# DNS servers.
    	# Extensive work was done to try to hack around this, but ultimately nothing was able to cover all
    	# of the edge cases. This work was captured in https://github.com/howardjohn/istio/tree/tf/vm-ipv6.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/ledger/smt_test.go

    		runtime.ReadMemStats(&m)
    		fmt.Println(index, " : update time : ", elapsed, "commit time : ", elapsed2,
    			"\n1000 Get time : ", elapsed3,
    			"\nRAM : ", m.Sys/1024/1024, " MiB")
    	}
    }
    
    // go test -run=xxx -bench=. -benchmem -test.benchtime=20s
    func BenchmarkCacheHeightLimit(b *testing.B) {
    	smt := newSMT(hasher, cache.NewTTL(forever, time.Minute), time.Minute)
    	benchmark10MAccounts10Ktps(smt, b)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/analyzers_bench_test.go

    func BenchmarkAnalyzers(b *testing.B) {
    	for _, tc := range testGrid {
    		tc := tc // Capture range variable so subtests work correctly
    		b.Run(tc.name+"-bench", func(b *testing.B) {
    			sa, err := setupAnalyzerForCase(tc, nil)
    			if err != nil {
    				b.Fatalf("Error setting up analysis for benchmark on testcase %s: %v", tc.name, err)
    			}
    
    			b.ResetTimer()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/multiplecontrolplanes/main_test.go

    				statusCode int
    				from       echo.Instances
    			}{
    				{
    					name:       "workloads in SE configured namespace can reach external service",
    					statusCode: http.StatusOK,
    					from:       apps.NS[1].A,
    				},
    				{
    					name:       "workloads in non-SE configured namespace, but same usergroup can reach external service",
    					statusCode: http.StatusOK,
    					from:       apps.NS[2].A,
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/workloadentry_test.go

    // resources inside each config cluster rather than doing cross-cluster discovery via remote secret.
    // Each case tests a different way of using local resources to reach remote destination(s).
    func TestWorkloadEntryGateway(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresMinClusters(2).
    		Run(func(t framework.TestContext) {
    			crd.DeployGatewayAPIOrSkip(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/cds.go

    	// TODO for now, we leave mTLS *off* by default:
    	// 1. We don't know if the client uses xds.NewClientCredentials; these settings will be ignored if not
    	// 2. We cannot reach servers in PERMISSIVE mode; gRPC doesn't allow us to override the alpn to one of Istio's
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top