Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 130 for leniently (0.18 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    docsPath.description = "Resolves to the complete Gradle documentation - automatically adds dependency to the :docs project"
    
    // Gradle API Sources
    val gradleApiSources = sourcesPath.incoming.artifactView { lenient(true) }.files.asFileTree.matching {
        include(PublicApi.includes)
        exclude(PublicApi.excludes)
    }
    
    // Tasks to generate metadata about the distribution that is required at runtime
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

                return instance.get();
            }
        }
    
        private Try<T> instantiate() {
            // TODO - extract some shared infrastructure to take care of instantiation (eg which services are visible, strict vs lenient, decorated or not?)
            // TODO - should hold the project lock to do the isolation. Should work the same way as artifact transforms (a work node does the isolation, etc)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCapabilitiesResolution.java

                        // because it's a capability conflict resolution, there is only one candidate per module identifier
                        // so we can be lenient wrt the version number used in the descriptor, which helps whenever the user
                        // used the convenience "notation" method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InternetDomainName.java

            return i + 1;
          }
        }
    
        return NO_SUFFIX_FOUND;
      }
    
      /**
       * Returns an instance of {@link InternetDomainName} after lenient validation. Specifically,
       * validation against <a href="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</a>
       * ("Internationalizing Domain Names in Applications") is skipped, while validation against <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    	// part and will incorrectly append the fragment to either the path or the query, depending on which it was adjacent to.
    	u, err := url.Parse(s)
    	if err != nil {
    		// Errors are not expected here since Parse is a more lenient parser than ParseRequestURI.
    		return types.NewErr("URL parse error during conversion from string: %v", err)
    	}
    	return apiservercel.URL{URL: u}
    }
    
    func getScheme(arg ref.Val) ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

    @CompileStatic
    abstract class AbstractKotlinScriptModelCrossVersionTest extends ToolingApiSpecification implements KotlinDslTestProjectInitiation {
    
        def setup() {
            // Required for the lenient classpath mode
            toolingApi.requireDaemons()
            // Only Kotlin settings scripts
            settingsFile.delete()
            file("settings.gradle.kts").touch()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionsSpec.groovy

            1 * details.useTarget("1.0")
            then:
            1 * details.useTarget("2.0")
            then:
            1 * details.useTarget("3.0")
            0 * details._
        }
    
        def "mutations trigger lenient validation"() {
            given:
            def validator = Mock(MutationValidator)
            substitutions.setMutationValidator(validator)
    
            when:
            substitutions.all(Mock(Action))
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DefaultDependencyLockingProvider.java

                    } else {
                        LOGGER.info("Loaded state for lock with ID '{}'", lockId);
                    }
                    boolean strictlyValidate = !partialUpdate && lockMode.get() != LockMode.LENIENT;
                    return new DefaultDependencyLockingState(strictlyValidate, results, getIgnoredEntryFilter());
                }
            }
            return DefaultDependencyLockingState.EMPTY_LOCK_CONSTRAINT;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                        }
                    }
                }
    
                task lenientCheck {
                    doLast {
                        def artifacts = configurations.conf.getIncoming().artifactView { lenient = true }.artifacts.artifacts
                        assert artifacts.size() == 0
                        assert candidates.empty
                    }
                }
    """
            when:
            repositoryInteractions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreator.java

                    }
                }
                return pathToSourceSetNames;
            }
    
            /*
             * SourceSet has no access to configurations where we could ask for a lenient view. This
             * means we have to deal with possible dependency resolution issues here. We catch and
             * log the exceptions here so that the Eclipse model can be generated even if there are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top