Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 130 for leniently (0.19 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaBasePlugin.java

            }
            scalaCompile.getAnalysisFiles().from(incrementalAnalysis.getIncoming().artifactView(viewConfiguration -> {
                viewConfiguration.lenient(true);
                viewConfiguration.componentFilter(spec(element -> element instanceof ProjectComponentIdentifier));
            }).getFiles());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 10:39:12 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryContentFilteringIntegrationTest.groovy

         * the same repositories. For example, for a distribution we would only allow fetching from blessed
         * repositories while for tests, we would be more lenient. This can be achieved by checking the name
         * of the configuration being resolved, in the rule.
         */
        def "can filter by configuration name (#notation)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/HashCode.java

       * be at least 2 characters long, and contain only valid, lower-cased hexadecimal characters.
       *
       * <p>This method accepts the exact format generated by {@link #toString}. If you require more
       * lenient {@code base 16} decoding, please use {@link com.google.common.io.BaseEncoding#decode}
       * (and pass the result to {@link #fromBytes}).
       *
       * @since 15.0
       */
      public static HashCode fromString(String string) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
        def "can add variants containing metadata as artifacts using lenient rules"() {
            given:
            repository {
                'org.test:moduleA:1.0' {
                    dependsOn 'org.test:moduleB:1.0'
                }
                'org.test:moduleB:1.0'()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/HashCode.java

       * be at least 2 characters long, and contain only valid, lower-cased hexadecimal characters.
       *
       * <p>This method accepts the exact format generated by {@link #toString}. If you require more
       * lenient {@code base 16} decoding, please use {@link com.google.common.io.BaseEncoding#decode}
       * (and pass the result to {@link #fromBytes}).
       *
       * @since 15.0
       */
      public static HashCode fromString(String string) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                    }
    
                    if (object == null) {
                        // The daemon has potentially disappeared, so mark the connection as suspect.
                        // This makes the connection lenient if outgoing messages cannot be written while attempting to gracefully shut down the connection (in the finally {} block below)
                        connection.markSuspect();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Strict mode::
    In this mode, in addition to the validations above, dependency locking will fail if a configuration marked as _locked_ does not have lock state associated with it.
    
    Lenient mode::
    In this mode, dependency locking will still pin dynamic versions but otherwise changes to the dependency resolution are no longer errors.
    
    The lock mode can be controlled from the `dependencyLocking` block as shown below:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

                    GRADLE_PROPERTY,
                    CommandLineOptionConfiguration.create(
                        LONG_OPTION, SHORT_OPTION, "Configures the dependency verification mode. Values are 'strict', 'lenient' or 'off'.")
                );
            }
    
            @Override
            public void applyTo(DependencyVerificationMode value, StartParameterInternal settings, Origin origin) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    // cluster is highly recommended. It's important to keep in mind when configuring
    // this client that the tolerance to skew rate varies inversely to master
    // availability.
    //
    // Larger clusters often have a more lenient SLA for API latency. This should be
    // taken into account when configuring the client. The rate of leader transitions
    // should be monitored and RetryPeriod and LeaseDuration should be increased
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    [[sec:dependency_verification_options]]
    == Dependency verification options
    Learn more about this in <<dependency_verification.adoc#verifying-dependencies,dependency verification>>.
    
    `-F=(strict,lenient,off)`, `--dependency-verification=(strict,lenient,off)`::
    Configures the <<dependency_verification.adoc#sec:disabling-verification,dependency verification mode>>.
    +
    The default mode is `strict`.
    
    `-M`, `--write-verification-metadata`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top