Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 195 for rejections (0.2 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/AddProjectionsAction.java

        private final Iterable<ModelProjection> projections;
    
        private AddProjectionsAction(ModelReference<T> subject, ModelRuleDescriptor descriptor, Iterable<ModelProjection> projections) {
            super(subject, descriptor);
            this.projections = projections;
        }
    
        public static <T> AddProjectionsAction<T> of(ModelReference<T> subject, ModelRuleDescriptor descriptor, ModelProjection... projections) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. pkg/kubelet/preemption/preemption.go

    	if !kubetypes.IsCriticalPod(admitPod) {
    		return failureReasons, nil
    	}
    	// InsufficientResourceError is not a reason to reject a critical pod.
    	// Instead of rejecting, we free up resources to admit it, if no other reasons for rejection exist.
    	nonResourceReasons := []lifecycle.PredicateFailureReason{}
    	resourceReasons := []*admissionRequirement{}
    	for _, reason := range failureReasons {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ProjectionOnlyNodeInitializer.java

    public class ProjectionOnlyNodeInitializer implements NodeInitializer {
        private final ModelProjection[] projections;
    
        public ProjectionOnlyNodeInitializer(ModelProjection... projections) {
            this.projections = projections;
        }
    
        @Override
        public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/errors/statuserror.go

    	if result == nil {
    		result = &metav1.Status{Status: metav1.StatusFailure}
    	}
    
    	// Make sure we don't return < 400 status codes along with a rejection
    	if result.Code < http.StatusBadRequest {
    		result.Code = http.StatusBadRequest
    	}
    	// Make sure we don't return "" or "Success" status along with a rejection
    	if result.Status == "" || result.Status == metav1.StatusSuccess {
    		result.Status = metav1.StatusFailure
    	}
    
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 13:12:07 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionCause.java

         */
        COMPOSITE_BUILD("composite build substitution"),
    
        /**
         * This component was selected because another version was rejected by a rule
         */
        REJECTION("rejection"),
    
        /**
         * This component was selected because of a dependency constraint
         */
        CONSTRAINT("constraint"),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

            if (isAtLeast(Discovered)) {
                throw new IllegalStateException(String.format("Cannot add projections to '%s' as it is already in state %s.", getPath(), state));
            }
            if (projections == null) {
                projections = new ArrayList<>();
            }
            projections.add(projection);
        }
    
        @Override
        public String toString() {
            return getPath().toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top