Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,582 for Retries (0.15 sec)

  1. .github/workflows/tests.yml

              - 9910:3306
            options: >-
              --health-cmd "mysqladmin ping -ugorm -pgorm"
              --health-interval 10s
              --health-start-period 10s
              --health-timeout 5s
              --health-retries 10
    
        steps:
        - name: Set up Go 1.x
          uses: actions/setup-go@v4
          with:
            go-version: ${{ matrix.go }}
    
        - name: Check out code into the Go module directory
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. pkg/webhooks/webhookpatch.go

    	return controllers.NewQueue("webhook patcher",
    		controllers.WithReconciler(reconciler),
    		// Try first few(5) retries quickly so that we can detect true conflicts by multiple Istiod instances fast.
    		// If there is a conflict beyond this, it means Istiods are seeing different ca certs and are in inconsistent
    		// state for longer duration. Slowdown the retries, so that we do not overload kube api server and etcd.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. releasenotes/notes/validating-webhook-reconcile-change.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 32210
    releaseNotes:
    - |
      **Fixed** reconciliation logic in the validation webhook controller to rate-limit
      the retries in the loop. This should drastically reduce churn (and generated logs)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 23 19:06:28 UTC 2021
    - 302 bytes
    - Viewed (0)
  4. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/RetryHttpInitializerWrapperTest.groovy

        def credentialSupplier = new Supplier<Credential>() {
            @Override
            Credential get() {
                return credential
            }
        }
    
        def "initialize should configure request for retries"() {
            given:
            def retryHttpInitializerWrapper = new RetryHttpInitializerWrapper(credentialSupplier)
            def storage = new Storage(transport, jsonFactory, retryHttpInitializerWrapper)
            def retryCount = 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

            FAILED("FAILED", "badge badge-danger", "Regression confidence > 99.9% despite retries."),
            NEARLY_FAILED("NEARLY-FAILED", "badge badge-warning", "Regression confidence > 90%, we're going to fail soon."),
            REGRESSED("REGRESSED", "badge badge-danger", "Regression confidence > 99.9% despite retries."),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. cmd/os-reliable.go

    			// windows, because windows API does not return "not a
    			// directory" error message. Handle this specifically
    			// here.
    			return errFileAccessDenied
    		}
    	}
    	return err
    }
    
    // Reliably retries os.RemoveAll if for some reason os.RemoveAll returns
    // syscall.ENOTEMPTY (children has files).
    func reliableRemoveAll(dirPath string) (err error) {
    	i := 0
    	for {
    		// Removes all the directories and files.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. releasenotes/notes/28742.yaml

    issue:
        - https://github.com/istio/istio/issues/28742
    
    releaseNotes:
    - |
      **Added** Configuring Envoy to fetch the Jwks by it self. This should be enabled if the JwksUri is a mesh cluster URL for mTLS and other benefits like retries, jws caching etc. 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 11 21:29:16 UTC 2021
    - 472 bytes
    - Viewed (0)
  8. tests/integration/base.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      meshConfig:
        # Disable retries. This avoids confusing logs and errors, and allows finer grain control for tests
        defaultHttpRetryPolicy: {}
        accessLogFile: "/dev/stdout"
        defaultConfig:
          proxyMetadata:
            ISTIO_META_DNS_CAPTURE: "true"
      values:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/ContinuousBuildCrossVersionToolingApiSpecificationRetryTest.groovy

    package org.gradle.integtests.tooling.fixture
    
    @TargetGradleVersion("<7.5")
    class ContinuousBuildCrossVersionToolingApiSpecificationRetryTest extends ContinuousBuildToolingApiSpecification {
    
        def iteration = 0
    
        def "retries if continuous build test times out"() {
            given:
            iteration++
    
            when:
            throwWhen(new RuntimeException("Timeout waiting for build to complete."), iteration == 1)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. .github/workflows/mint/minio-erasure.yaml

        MINIO_ROOT_PASSWORD: "minio123"
        MINIO_KMS_SECRET_KEY: "my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw="
      healthcheck:
        test: ["CMD", "mc", "ready", "local"]
        interval: 5s
        timeout: 5s
        retries: 5
    
    # starts 4 docker containers running minio server instances.
    # using nginx reverse proxy, load balancing, you can access
    # it through port 9000.
    services:
      minio1:
        <<: *minio-common
        hostname: minio1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top