Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 762 for Rejected (0.37 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

            expected: "12",
            expectedStrict: [REJECTED, REJECTED, REJECTED, "12"]
        ).and(
            versions: [FIXED_10, RANGE_10_11, FIXED_12, RANGE_12_14],
            expected: "12",
            expectedStrict: [REJECTED, REJECTED, "12", "12"]
        ).and(
            versions: [FIXED_10, RANGE_10_11, RANGE_10_12, RANGE_13_14],
            expected: "13",
            expectedStrict: [REJECTED, REJECTED, REJECTED, "13"]
        ).and(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

                closuresCalled << 5
                cs.reject("rejected")
            }
    
            and:
            apply(metadataProvider)
    
            then:
            componentSelection.rejected
            componentSelection.rejectionReason == "rejected"
    
            and:
            // None of the metadata rules get fired because a non-metadata rule rejected first
            closuresCalled.intersect(1..3) == []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    	WebhookRejectionNoError WebhookRejectionErrorType = "no_error"
    )
    
    var (
    	latencySummaryMaxAge = 5 * time.Hour
    
    	// Metrics provides access to all admission metrics.
    	Metrics = newAdmissionMetrics()
    )
    
    // ObserverFunc is a func that emits metrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

    Versions that do not match:
      - 0.9
      - 0.10
    Versions rejected by component selection rules:
      - 1.1
      - 1.2
    Searched in the following locations:
      - http://somewhere
      - file:/somewhere""")
        }
    
        def "formats message for selector and locations when versions attempted and all rejected"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    			t := time.Now()
    			err := d.callHook(ctx, hook, invocation, versionedAttr)
    			rejected := false
    			if err != nil {
    				switch err := err.(type) {
    				case *webhookutil.ErrCallingWebhook:
    					if !ignoreClientCallFailures {
    						rejected = true
    						// Ignore context cancelled from webhook metrics
    						if !errors.Is(err.Reason, context.Canceled) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

                variant = 'default'
            }
            failure.assertHasCause("""Module 'cglib:cglib-nodep' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5($variant)]""")
            failure.assertHasCause("""Module 'cglib:cglib' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib-nodep:3.2.5($variant)]""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics_test.go

    		"name":      "x",
    		"operation": string(admission.Create),
    		"type":      "admit",
    		"code":      "200",
    		"rejected":  "false",
    	}
    	wantLabelsCounterValidate := map[string]string{
    		"name":      "x",
    		"operation": string(admission.Create),
    		"type":      "validate",
    		"code":      "600",
    		"rejected":  "true",
    	}
    	wantLabelsHistogramAdmit := map[string]string{
    		"name":      "x",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:37 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        }
    
        @Override
        public void reject() {
            this.rejected = true;
        }
    
        public void rejectForCapabilityConflict(Capability capability, Collection<NodeState> conflictedNodes) {
            this.rejected = true;
            if (this.capabilityReject == null) {
                this.capabilityReject = Pair.of(capability, conflictedNodes);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/controller/controller.go

    		}
    	}
    }
    
    func (c *Controller) readyForFailClose() bool {
    	if !c.dryRunOfInvalidConfigRejected {
    		if rejected, reason := c.isDryRunOfInvalidConfigRejected(); !rejected {
    			scope.Infof("Not ready to switch validation to fail-closed: %v", reason)
    			return false
    		}
    		scope.Info("Endpoint successfully rejected invalid config. Switching to fail-close.")
    		c.dryRunOfInvalidConfigRejected = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                }
            }
            fails 'checkDeps'
    
            then:
            failure.assertHasCause("""Module 'org:foo' has been rejected:
       Cannot select module with conflict on capability 'org:foo:1.0' also provided by [org:bar:1.0(runtime)]""")
            failure.assertHasCause("""Module 'org:bar' has been rejected:
       Cannot select module with conflict on capability 'org:foo:1.0' also provided by [org:foo:1.0(runtime)]""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top