Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,183 for forced (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        selectedByRule()
                        forced()
                        module("org.utils:api:1.3") {
                            selectedByRule()
                            forced()
                        }
                    }
                }
            }
        }
    
        void "forced modules and rules coexist"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractDependencyMetadataAdapter.java

            return Cast.uncheckedCast(this);
        }
    
        public void forced() {
            ModuleDependencyMetadata originalMetadata = getMetadata();
            if (originalMetadata instanceof ForcingDependencyMetadata) {
                updateMetadata((ModuleDependencyMetadata) ((ForcingDependencyMetadata) originalMetadata).forced());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionDescriptorInternal.java

         *
         * @return a new descriptor, equivalent to force
         */
        ComponentSelectionDescriptorInternal markAsEquivalentToForce();
    
        /**
         * Indicates whether the component selection descriptor is equivalent to a forced dependency
         *
         * @return {@code true} if equivalent to force, {@code false} otherwise
         */
        boolean isEquivalentToForce();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalOriginDependencyMetadata.java

        @Override
        LocalOriginDependencyMetadata withTargetAndArtifacts(ComponentSelector target, List<IvyArtifactName> artifacts);
    
        @Override
        LocalOriginDependencyMetadata forced();
    
        /**
         * Is this a dependency constraint created for a dependency lock?
         */
        boolean isFromLock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 19:31:08 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ForcedModulesIntegrationTest.groovy

    repositories { maven { url "${mavenRepo.uri}" } }
    
    dependencies {
        implementation 'org:foo:1.0'
    }
    
    configurations.all {
        resolutionStrategy {
            force 'org:foo:1.5'
            force 'org:foo:2.0'
            force 'org:foo:1.9'
        }
    }
    
    task checkDeps {
        def compileClasspath = configurations.compileClasspath
        doLast {
            assert compileClasspath*.name == ['foo-1.9.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

        }
    }
    """
    
            when:
            fails 'resolve'
    
            then:
            failureHasCause("Did not resolve 'org:test:1.1' which has been forced / substituted to a different version: '1.0'")
        }
    
        def "fails when a substitute overwrites a locked version"() {
            given:
            mavenRepo.module('org', 'test', '1.0').publish()
            mavenRepo.module('org', 'test', '1.1').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStopState.java

    public enum DaemonStopState {
        /**
         * Daemon was stopped cleanly and all work stopped.
         */
        Clean,
        /**
         * Daemon could not be stopped cleanly and some work may still be running.
         */
        Forced
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:45:11 UTC 2024
    - 953 bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/EnforcedPlatformPublicationValidator.java

        private final static String SUPPRESSION = "enforced-platform";
        private final static String LONG_EXPLANATION = "In general publishing dependencies to enforced platforms is a mistake: " +
            "enforced platforms shouldn't be used for published components because they behave like forced dependencies and leak to consumers. " +
            "This can result in hard to diagnose dependency resolution errors.";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/ir/ConvertSimQuant.cc

        Type quantizedType = converter.convert(elementType);
        assert(quantizedType &&
               "Converter accepted a type that it did not convert");
    
        // TODO: Map to a qbarrier with an attribute like [Forced] to signal that
        // this is a forced/hard-coded constraint.
        auto qbarrier = rewriter.create<QuantizeCastOp>(op.getLoc(), quantizedType,
                                                        op.getInputs());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. gradle/dependency-management/capabilities.json

                "org.codehaus.groovy:groovy-all"
            ],
            "selected": "org.codehaus.groovy:groovy"
        },
    
        // forced upgrade: the following modules will automatically be replaced with the selected module
        // even if there's no conflict, and forces an upgrade to the specified version
        {
            "name": "asm",
            "providedBy": [
                "asm:asm", "asm:asm-all", "asm:asm-debug-all"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top