Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for rejectConn (0.25 sec)

  1. src/net/http/h2_bundle.go

    		// does not meet the TLS requirements described in
    		// this section with a connection error (Section
    		// 5.4.1) of type INADEQUATE_SECURITY.
    		if sc.tlsState.Version < tls.VersionTLS12 {
    			sc.rejectConn(http2ErrCodeInadequateSecurity, "TLS version too low")
    			return
    		}
    
    		if sc.tlsState.ServerName == "" {
    			// Client must use SNI, but we don't enforce that anymore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/validation_test.go

    				if err == nil {
    					return false
    				}
    				// We are only checking the string literals of the rejection reasons
    				// from the webhook and the k8s api server as the returned errors are not
    				// k8s typed errors.
    				// Note: this explicitly does NOT catch OpenAPI schema rejections - only validating webhook rejections.
    				return strings.Contains(err.Error(), "denied the request")
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/DefaultBuildableComponentIdResolveResult.java

        }
    
        @Override
        public void rejections(Collection<RejectedVersion> rejections) {
            if (rejections.isEmpty()) {
                return;
            }
            if (this.rejections == null) {
                this.rejections = new ImmutableSet.Builder<>();
            }
            this.rejections.addAll(rejections);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentIdResolveResult.java

        /**
         * Registers the list of rejections that happened during resolution for this module.
         * This method is used for dynamic modules, when there's often more than one
         * version which can match, but we actually select (or reject) more before selecting.
         *
         * @param rejections a collection of rejected versions
         */
        void rejections(Collection<RejectedVersion> rejections);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

        }
    
        Violation acceptOrReject(JApiCompatibility member, Violation rejection) {
            List<String> changes = member.compatibilityChanges.collect { Violation.describe(it) }
            return acceptOrReject(member, changes, rejection)
        }
    
        Violation acceptOrReject(JApiCompatibility member, List<String> changes, Violation rejection) {
            Set<ApiChange> seenApiChanges = (Set<ApiChange>) context.userData["seenApiChanges"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

                root(":", ":test:") {
                    edge("org.test:module:${requested}", 'org.test:module:1.1') {
                        byReason("rejection: version 1.3:   - Attribute 'quality' didn't match. Requested 'qa', was: 'rc'")
                        byReason("rejection: version 1.2:   - Attribute 'quality' didn't match. Requested 'qa', was: 'rc'")
                    }
                }
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                            byReason("rejection: version 5:   - Attribute 'org.gradle.status' didn't match. Requested 'release', was: 'integration'")
                        } else if (status == 'milestone') {
                            byReason("rejection: version 5:   - Attribute 'org.gradle.status' didn't match. Requested 'milestone', was: 'integration'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_versions.txt

    # Test rejection of pkg@version in GOPATH mode.
    env GO111MODULE=off
    ! go get rsc.io/quote@v1.5.1
    stderr '^go: modules disabled by GO111MODULE=off'
    ! go build rsc.io/quote@v1.5.1
    stderr '^package rsc.io/quote@v1.5.1: can only use path@version syntax with ''go get'' and ''go install'' in module-aware mode$'
    
    env GO111MODULE=on
    cd x
    ! go build rsc.io/quote@v1.5.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 517 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasons.java

        public static final ComponentSelectionDescriptorInternal REJECTION = new DefaultComponentSelectionDescriptor(ComponentSelectionCause.REJECTION);
        public static final ComponentSelectionDescriptorInternal BY_ANCESTOR = new DefaultComponentSelectionDescriptor(ComponentSelectionCause.BY_ANCESTOR);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top