Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 279 for saturation (0.45 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/NoMatchingCapabilitiesFailure.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor.AssessedCandidate;
    
    import java.util.Collection;
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that represents the situation when no variants can
     * be found in the list of candidates that have the requested capabilities.
     */
    public final class NoMatchingCapabilitiesFailure extends AbstractVariantSelectionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         * this is no worse than what FutureTask does in that situation. Additionally, because the
         * Future was cancelled, its listeners have been run, so its consumers will not hang.
         *
         * Contrast this to the situation we have if setResult() throws, a situation described below.
         */
        I sourceResult;
        try {
          sourceResult = getDone(localInputFuture);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/AmbiguousResolutionFailure.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that represents the situation when multiple variants are
     * available that would satisfy a dependency selection request.
     */
    public class AmbiguousResolutionFailure extends AbstractIncompatibleAttributesSelectionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/IncompatibleMultipleNodeSelectionFailure.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor.AssessedCandidate;
    
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that represents the situation when multiple incompatible variants of a single component
     * are selecting during a request.
     */
    public final class IncompatibleMultipleNodeSelectionFailure extends AbstractVariantSelectionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/AmbiguousArtifactTransformFailure.java

    import org.gradle.api.internal.artifacts.transform.TransformedVariant;
    import org.gradle.api.internal.attributes.AttributeContainerInternal;
    
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that represents the situation when multiple artifact transforms are
     * available that would satisfy a dependency selection request.
     */
    public final class AmbiguousArtifactTransformFailure extends AbstractIncompatibleAttributesSelectionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. testing/precondition-tester/README.md

    We can use this information (i.e. by looking at the test results in Develocity) to see if we have any preconditions or combinations of preconditions, which are never satisfied – a situation which we otherwise would hardly notice.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/AbstractConfigurationSelectionFailure.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.type;
    
    /**
     * An abstract {@link ResolutionFailure} that represents the situation when a configuration is requested
     * by name on a project dependency and does not exist on the target project.
     */
    public abstract class AbstractConfigurationSelectionFailure implements ResolutionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/IncompatibleRequestedConfigurationFailure.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that specializes {@link IncompatibleResolutionFailure} to represent the situation when a configuration is
     * requested by name but its attributes are not compatible with the request.
     */
    public final class IncompatibleRequestedConfigurationFailure extends IncompatibleResolutionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/VariantAwareAmbiguousResolutionFailure.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    
    import java.util.List;
    
    /**
     * A specialization of {@link AmbiguousResolutionFailure} that represents the situation when multiple variants are
     * available that would satisfy a dependency selection request during a variant-aware matching scenario.
     */
    public final class VariantAwareAmbiguousResolutionFailure extends AmbiguousResolutionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/IncompatibleResolutionFailure.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that represents the generic situation when no variants can
     * be found in the list of candidates that are compatible with a request.
     */
    public class IncompatibleResolutionFailure extends AbstractIncompatibleAttributesSelectionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top