Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,993 for Rejected (0.13 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReport.out

    log4j:log4j:1.2.16 FAILED
       Failures:
          - Could not resolve log4j:log4j:1.2.16.
              - Module 'log4j:log4j' has been rejected:
                   Cannot select module with conflict on capability 'log4j:log4j:1.2.16' also provided by [org.slf4j:log4j-over-slf4j:1.7.10(compile)]
    
    log4j:log4j:1.2.16 FAILED
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10 FAILED
       Failures:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/TestComponentResolutionState.java

        @Override
        public void addCause(ComponentSelectionDescriptorInternal componentSelectionDescriptor) {
        }
    
        @Override
        public void reject() {
            rejected = true;
        }
    
        @Override
        public boolean isRejected() {
            return rejected;
        }
    
        @Override
        public Set<VirtualPlatformState> getPlatformOwners() {
            return Collections.emptySet();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentIdResolveResult.java

         */
        void resolved(ComponentIdentifier id, ModuleVersionIdentifier moduleVersionIdentifier);
    
        /**
         * Marks the component selector as resolved to the specified id, but rejected.
         */
        void rejected(ComponentIdentifier id, ModuleVersionIdentifier moduleVersionIdentifier);
    
        /**
         * Marks the component selector as resolved, with the provided state. The id is taken from the metadata.
         */
    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. 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)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                }
                failure.assertHasCause("""Module 'org.apache:groovy' has been rejected:
       Cannot select module with conflict on capability 'org.apache:groovy:1.0' also provided by [org.apache:groovy-all:1.0($variant)]""")
                failure.assertHasCause("""Module 'org.apache:groovy-json' has been rejected:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilitiesIntegrationTest.groovy

            }
            fails ':checkDeps'
    
            then:
            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(runtime)]""")
            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(runtime)]""")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentIdResolveResult.java

         */
        boolean isRejected();
    
        /**
         * @return the list of unmatched versions, that is to say versions which were listed but didn't match the selector
         */
        Collection<String> getUnmatchedVersions();
    
        /**
         * @return the list of versions which were considered for this module but rejected.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. plugin/pkg/admission/runtimeclass/admission.go

    			return admission.NewForbidden(a, fmt.Errorf("pod rejected: Pod's Overhead doesn't match RuntimeClass's defined Overhead"))
    		}
    	} else {
    		// If RuntimeClass with Overhead is not defined but an Overhead is set for pod, reject the pod
    		if pod.Spec.Overhead != nil {
    			return admission.NewForbidden(a, fmt.Errorf("pod rejected: Pod Overhead set without corresponding RuntimeClass defined Overhead"))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 05:53:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top