Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 130 for leniently (0.2 sec)

  1. build-logic/root-build/src/main/kotlin/gradlebuild.warmup-ec2.gradle.kts

                        if (c.isCanBeResolved) {
                            println("Downloading dependencies for '$path' - ${c.name}")
                            val result = c.incoming.artifactView { lenient(true) }.artifacts
                            result.failures.forEach {
                                println("- Ignoring Error: ${it.message}")
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 09:39:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. gradle.properties

    # Temporarily force IDEs to produce build scans
    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    # TD related properties
    gradle.internal.testdistribution.writeTraceFile=true
    develocity.internal.testdistribution.writeTraceFile=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryExtensionsIntegrationTest.groovy

                    myExtensible.extensions.create("thing", Thing)
                }
            }
    """
    
            expect:
            succeeds "createExtension"
        }
    
        def "creation via extension is lenient where injected ObjectFactory is not"() {
            buildFile """
                class Thing {
                    String name
    
                    Thing(String name) {
                        this.name = name
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 13 21:29:11 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

            extendsFrom(currentClasspath)
        }
    }
    
    def currentClasspath = configurations.currentApiClasspath.incoming.artifactView { lenient(true) }.files
    def currentDistroJars = currentClasspath.filter { it.name.startsWith('gradle-') && it.name.endsWith('.jar') }
    def baselineJars = configurations.baselineJars
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

        InternetDomainName origin = InternetDomainName.from("foo.com");
        InternetDomainName parent = origin.parent();
        assertEquals("com", parent.toString());
    
        // These would throw an exception if leniency were not preserved during parent() and child()
        // calls.
        InternetDomainName child = parent.child(LOTS_OF_DELTAS);
        InternetDomainName unused = child.child(LOTS_OF_DELTAS);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

                        if (versionState != null) {
                            ComponentGraphResolveState lenient = versionState.maybeAsLenientPlatform((ModuleComponentIdentifier) componentIdentifier, id);
                            if (lenient != null) {
                                setState(lenient, ComponentGraphSpecificResolveState.EMPTY_STATE);
                                return true;
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/DefaultIdeDependencyResolver.java

                @Override
                public void execute(ArtifactView.ViewConfiguration viewConfiguration) {
                    viewConfiguration.lenient(true);
                    viewConfiguration.componentFilter(IS_A_MODULE_ID);
                }
            }).getArtifacts().getArtifacts();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingState.java

         * and the resolution result must exactly match the set of locked dependencies.
         *
         * If {@code false}, each locked dependency is added a regular (lenient) constraint,
         * and the resolution result is not verified against the set of locked dependencies.
         *
         * @return {@code true} if lock state was found, {@code false} otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedFileOrderingIntegrationTest.groovy

            println "artifacts 2: " + configurations.compile.incoming.artifactView { }.artifacts.collect { it.file.name }
            println "artifacts 3: " + configurations.compile.incoming.artifactView { lenient = true }.artifacts.collect { it.file.name }
    
            println "files 1: " + configurations.compile.incoming.files.collect { it.name }
            println "files 2: " + configurations.compile.files.collect { it.name }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r60/KotlinDslDefaultScriptsModelCrossVersionSpec.groovy

            then:
            model.scriptModels.keySet() == spec.scripts.values() as Set
    
            and:
            assertModelMatchesBuildSpec(model, spec)
        }
    
        def "can fetch model for the scripts of a build in lenient mode"() {
    
            given:
            def spec = withMultiProjectBuildWithBuildSrc()
    
            and:
            spec.scripts.a << """
                script_body_compilation_error
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 21 09:28:30 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top