Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for 429 (0.02 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-concreteVersion/kotlin/build.gradle.kts

                strictly("[1.7, 1.8[")
                prefer("1.7.25")
            }
        }
    
        constraints {
            add("implementation", "org.springframework:spring-core") {
                version {
                    require("4.2.9.RELEASE")
                    reject("4.3.16.RELEASE")
                }
            }
        }
    }
    // end::rich-version[]
    
    tasks.register<Copy>("copyLibs") {
        from(configurations.compileClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-concreteVersion/groovy/build.gradle

                strictly '[1.7, 1.8['
                prefer '1.7.25'
            }
        }
    
        constraints {
            implementation('org.springframework:spring-core') {
                version {
                    require '4.2.9.RELEASE'
                    reject '4.3.16.RELEASE'
                }
            }
        }
    }
    // end::rich-version[]
    
    /*
    // tag::required-version[]
    dependencies {
        implementation('org.slf4j:slf4j-api:1.7.15')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after.go

    // WithRetryAfter rejects any incoming new request(s) with a 429
    // if the specified shutdownDelayDurationElapsedFn channel is closed
    //
    // It includes new request(s) on a new or an existing TCP connection
    // Any new request(s) arriving after shutdownDelayDurationElapsedFn is closed
    // are replied with a 429 and the following response headers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    			t.Error(err)
    		}
    	}
    
    	// Set up 10 watchers for custom resource.
    	// We can't exercise them in a loop the same way as get requests, as watchcache
    	// can reject them with 429 and Retry-After: 1 if it is uninitialized and even
    	// though 429 is automatically retried, with frequent watchcache terminations and
    	// reinitializations they could either end-up being rejected N times and fail or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/transport/NetworkingIssueVerifierTest.groovy

            "HttpErrorStatusCodeException with transient client error"  | new HttpErrorStatusCodeException("something", "something", 429, "something")
            "RuntimeException with a likely network exception as cause" | new RuntimeException("with cause", new SocketTimeoutException("something went wrong"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    			            # TYPE apiserver_request_total counter
    			            apiserver_request_total{code="429",component="apiserver",dry_run="",group="",resource="pods",scope="cluster",subresource="",verb="LIST",version="v1"} 1
    				`,
    		},
    		{
    			desc: "post pods",
    			request: &http.Request{
    				Method: "POST",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/transport/NetworkingIssueVerifier.java

    import java.net.SocketTimeoutException;
    import java.util.List;
    
    public class NetworkingIssueVerifier {
    
        // Too many requests (not available through HttpStatus.XXX)
        private static final int SC_TOO_MANY_REQUESTS = 429;
    
        /**
         * Determines if an error should cause a retry. We will currently retry:
         * <ul>
         * <li>on a network timeout</li>
         * <li>on a server error (return code 5xx)</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/net/http/status.go

    	StatusTooEarly                     = 425 // RFC 8470, 5.2.
    	StatusUpgradeRequired              = 426 // RFC 9110, 15.5.22
    	StatusPreconditionRequired         = 428 // RFC 6585, 3
    	StatusTooManyRequests              = 429 // RFC 6585, 4
    	StatusRequestHeaderFieldsTooLarge  = 431 // RFC 6585, 5
    	StatusUnavailableForLegalReasons   = 451 // RFC 7725, 3
    
    	StatusInternalServerError           = 500 // RFC 9110, 15.6.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    			allow: false,
    			code:  500,
    
    			expectError: true,
    			expectOk:    false,
    			expectCalls: 5,
    		},
    		{
    			description: "an0th3r_t0k3n, 429 response, disallowed, should be called again with retries",
    
    			token: "an0th3r_t0k3n",
    			allow: false,
    			code:  429,
    
    			expectError: true,
    			expectOk:    false,
    			expectCalls: 5,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			allow: false,
    			code:  500,
    
    			expectError: true,
    			expectOk:    false,
    			expectCalls: 5,
    		},
    		{
    			description: "an0th3r_t0k3n, 429 response, disallowed, should be called again with retries",
    
    			token: "an0th3r_t0k3n",
    			allow: false,
    			code:  429,
    
    			expectError: true,
    			expectOk:    false,
    			expectCalls: 5,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
Back to top