Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for leniently (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AdditionalVariant.java

        private final String name;
        private final String base;
        private final boolean lenient;
    
        public AdditionalVariant(String name) {
            this(name, null, false);
        }
    
        public AdditionalVariant(String name, @Nullable String base, boolean lenient) {
            this.name = name;
            this.base = base;
            this.lenient = lenient;
        }
    
        public String getName() {
            return name;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultArtifactCollection.java

        private final boolean lenient;
        private final CalculatedValue<ArtifactSetResult> result;
    
        public DefaultArtifactCollection(ResolutionBackedFileCollection files, boolean lenient, ResolutionHost resolutionHost, CalculatedValueFactory calculatedValueFactory) {
            this.fileCollection = files;
            this.lenient = lenient;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

         */
        InstantiationScheme decorateScheme();
    
        /**
         * Creates an {@link Instantiator} that decorates the instances created.
         * The returned {@link Instantiator} is lenient when there is a missing {@link javax.inject.Inject} annotation or null constructor parameters,
         * for backwards compatibility.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/LockMode.java

     *     <li>{@code LENIENT} will load the lock state, to anchor dynamic versions, but otherwise be lenient about modifications of the dependency resolution,
     *     allowing versions to change and module to be added or removed</li>
     * </ul>
     *
     * @since 6.1
     */
    public enum LockMode {
        STRICT,
        DEFAULT,
        LENIENT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         */
        STRICT,
    
        /**
         * Error types are equal to and subtypes of all types.
         *
         * [LENIENT] should be chosen if type errors are expected and should be treated as type holes that can be satisfied by any other type.
         * However, caution should be applied when using [LENIENT], as the policy can swallow type errors which should have been dealt with
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactoryTest.groovy

            capability.name == 'bar'
            capability.version == '1.0'
    
            where:
            parser << [strictParser, lenientParser]
        }
    
        def "can parse string notation without version using lenient parser"() {
            when:
            def capability = lenientParser.parseNotation("foo:bar")
    
            then:
            capability.group == 'foo'
            capability.name == 'bar'
            capability.version == null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                actualFiles = findLines(configDetails, 'lenient-artifact-view-file')
                compare("artifactView.files (lenient)", actualFiles, expectedFiles)
    
                actualArtifacts = findLines(configDetails, 'lenient-artifact-view-artifact')
                compare("artifactView.artifacts (lenient)", actualArtifacts, expectedArtifacts)
    
                actualFiles = findLines(configDetails, 'lenient-artifact-view-file-file')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

                }
    
                is ResolutionBackedFileCollection -> {
                    val displayName = fileCollection.resolutionHost.displayName
                    val lenient = fileCollection.isLenient
                    val nestedVisitor = ResolutionContentsCollectingVisitor(displayName, lenient)
                    fileCollection.visitStructure(nestedVisitor)
                    nestedVisitor.addElements(elements)
                    false
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

                    lenientArtifactViewFiles.each {
                        writeFile("lenient-artifact-view-file", writer, it)
                    }
                    lenientArtifactViewArtifacts.each {
                        writeArtifact("lenient-artifact-view-artifact", writer, it)
                    }
                    lenientArtifactViewFiles.files.each {
                        writeFile("lenient-artifact-view-file-file", writer, it)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvePOMIntegrationTest.groovy

            given:
            mainProjectDir.file("app/build.gradle") << """
                tasks.register("resolve", Resolve) {
                    artifactFiles.from(configurations.getByName("compileClasspath").incoming.artifactView {
                        lenient = true
                    }.getFiles())
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top