Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 130 for leniently (0.21 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/normalization/DefaultModelNormalizer.java

             * unique within a single POM. Upon multiple declarations, 2.x just kept the last one but retained the order of
             * the first occurrence. So when we're in lenient/compat mode, we have to deal with such broken POMs and mimic
             * the way 2.x works. When we're in strict mode, the removal of duplicates just saves other merging steps from
             * aftereffects and bogus error messages.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

            }
    
            Rel(providerScriptTemplates, scriptResolver, "Selects", "by configuration, one loaded per script target type")
    
            Rel(tapiModelBuilders, providerFactory, "Configures", "Lenient mode, collecting exceptions")
            Rel(tapiModelBuilders, providerFactory, "Queries", "Collected exceptions")
    
            Rel(pluginPlugin, gradleKotlinDslApi, "Adds", "dependency")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

         * which exposes configurations as a variant.
         * </p>
         */
        @Nullable
        ConfigurationGraphResolveState getConfiguration(String configurationName);
    
        /**
         * When this component is a lenient platform, create a copy with the given ids. Otherwise, returns {@code null}.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileOrUriNotationConverter.java

            try {
                result.converted(new URI(notationString));
            } catch (URISyntaxException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        /**
         * Lenient legacy behavior to fall back to when URI cannot be normally parsed.
         */
        private static String fallbackUrlDecode(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.shaded-jar.gradle.kts

                attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named("gradle-source-folders"))
            }
        }
        tasks.named<Jar>("sourcesJar") {
            from(sourcesPath.incoming.artifactView { lenient(true) }.files)
        }
        val sourcesElements by configurations
        sourcesElements.attributes {
            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.SHADOWED))
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

            }
    
            where:
            rule << [
                "select(candidates.find { it.id.module == 'testB'})",
                "select('org:testB:1.0')",
                "select('org:testB:1.1')", // we are lenient wrt to the version number
            ]
        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_test.go

    			clusterCIDR:        "fd00:1::0/64",
    			healthzBindAddress: "[fd00:1::5]:12345",
    			metricsBindAddress: "[fd00:2::5]:23456",
    		},
    		{
    			// Test for unknown field within config.
    			// For v1alpha1 a lenient path is implemented and will throw a
    			// strict decoding warning instead of failing to load
    			name:               "unknown field",
    			mode:               "iptables",
    			bindAddress:        "9.8.7.6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

             * unique within a single POM. Upon multiple declarations, 2.x just kept the last one but retained the order of
             * the first occurrence. So when we're in lenient/compat mode, we have to deal with such broken POMs and mimic
             * the way 2.x works. When we're in strict mode, the removal of duplicates just saves other merging steps from
             * aftereffects and bogus error messages.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

                runner.expectDeprecationWarning("The LenientConfiguration.getArtifacts(Spec) method has been deprecated. This is scheduled to be removed in Gradle 9.0. Use a lenient ArtifactView with a componentFilter instead. Consult the upgrading guide for further information: https://docs.gradle.org/${GradleVersion.current().version}/userguide/upgrading_version_8.html#deprecate_filtered_configuration_file_and_filecollection_methods",...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentMetadataDetails.java

         * @param action the action to populate the variant
         *
         * @since 6.0
         */
        void addVariant(String name, String base, Action<? super VariantMetadata> action);
    
        /**
         * This is the lenient version of {@link #addVariant(String, String, Action)}.
         * The only difference is that this will do nothing (instead of throwing an error), if the 'base' variant does not exist for a component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 5.4K bytes
    - Viewed (0)
Back to top