Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 130 for leniently (0.12 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                task resolve(type: Copy) {
                    def artifacts = configurations.compile.incoming.artifactView {
                        attributes { it.attribute(artifactType, 'size') }
                        lenient(providers.gradleProperty("lenient").present)
                    }.artifacts
                    from artifacts.artifactFiles
                    into "\${buildDir}/libs"
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    	// http://tools.ietf.org/html/rfc7230#section-5.4
    	//     Host = uri-host [ ":" port ]
    	//
    	// Where uri-host is:
    	//     http://tools.ietf.org/html/rfc3986#section-3.2.2
    	//
    	// But we're going to be much more lenient for now and just
    	// search for any byte that's not a valid byte in any of those
    	// expressions.
    	for i := 0; i < len(h); i++ {
    		if !validHostByte[h[i]] {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencySet.java

                    @Override
                    public void execute(ArtifactView.ViewConfiguration viewConfiguration) {
                        viewConfiguration.lenient(true);
                        viewConfiguration.componentFilter(getComponentFilter(visitor));
                    }
                }).getArtifacts();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

                    String errorMessage = buildConsoleErrorMessage(report);
                    if (verificationMode == DependencyVerificationMode.LENIENT) {
                        LOGGER.error(errorMessage);
                        // Clear failures to avoid printing this error multiple times.
                        failures.clear();
                        hasFatalFailure = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

                int readByte = in.read();
                if (readByte < 0) {
                    return TRANSFORMED;
                }
                // Be lenient - any non-empty file means the JAR isn't transformed.
                return NOT_TRANSFORMED;
            }
    
            public byte[] asBytes() {
                return markerBody;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/VariantFilesMetadataRulesTest.groovy

            "gradle"     | gradleComponentMetadata('dep') | 'Variant'
        }
    
        def "does not add a variant for non-existing base in #metadataType metadata if lenient"() {
            given:
            def rule = Mock(Action)
    
            when:
            metadata.getVariantMetadataRules().addVariant("new-variant", "not-exist", true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

         * Indicates if the model to be built is a local project or a dependency.
         * In case the project is loaded externally from a remote repository (as a dependency or
         * even as an external parent), the POM will be parsed in a lenient way.  Local POMs
         * are parsed more strictly.
         */
        boolean isProjectBuild();
    
        /**
         * Specifies whether plugin processing should take place for the built model.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

            return doRegisterIfAbsent(name, implementationType, () -> {
                // TODO - extract some shared infrastructure to take care of parameter instantiation (eg strict vs lenient, which services are visible)
                P parameters = instantiateParametersOf(implementationType);
    
                // TODO - should defer execution of the action, to match behaviour for other container `register()` methods.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - `lenient`, which will run the build even if there are verification failures.
    The verification errors will be displayed during the build without causing a build failure.
    - `off` when verification is totally ignored.
    
    All those modes can be activated on the CLI using the `--dependency-verification` flag, for example:
    
    ----
    ./gradlew --dependency-verification lenient build
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top