- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 347 for filtering (0.22 sec)
-
platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc
==== See <<#sec:supported_transport_protocols>> for authentication options. [[sec:repository-content-filtering]] == Repository content filtering Gradle exposes an API to declare what a repository may or may not contain. There are different use cases for it:
Registered: 2024-06-12 18:38 - Last Modified: 2023-12-07 01:37 - 43.2K bytes - Viewed (0) -
subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java
* removed, the result will be an empty file, not an absent one. * * @param closure to implement line based filtering * @return this */ ContentFilterable filter(Closure closure); /** * Adds a content filter based on the provided transformer. The Closure will be called with each line (stripped of line
Registered: 2024-06-12 18:38 - Last Modified: 2022-12-16 22:05 - 5.4K bytes - Viewed (0) -
docs/batch-jobs/README.md
- Source location from where the objects must be copied from - Target location from where the objects must be copied to - Fine grained filtering is available to pick relevant objects from source to copy from MinIO batch jobs framework also provides - Retrying a failed job automatically driven by user input - Monitoring job progress in real-time
Registered: 2024-06-16 00:44 - Last Modified: 2022-10-06 06:00 - 4.8K bytes - Viewed (0) -
platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderFactory.java
* * @param parent the parent ClassLoader * @param spec the filtering spec for the classloader * @return The ClassLoader */ ClassLoader createFilteringClassLoader(ClassLoader parent, FilteringClassLoader.Spec spec);
Registered: 2024-06-12 18:38 - Last Modified: 2024-04-17 00:47 - 1.7K bytes - Viewed (0) -
src/internal/profile/filter.go
// Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Implements methods to filter samples from profiles. package profile // TagMatch selects tags for filtering type TagMatch func(key, val string, nval int64) bool // FilterSamplesByTag removes all samples from the profile, except // those that match focus and do not match the ignore regular // expression.
Registered: 2024-06-12 16:32 - Last Modified: 2024-02-08 17:57 - 1.4K bytes - Viewed (0) -
platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfigurationContainer.java
* * Being a {@link org.gradle.api.NamedDomainObjectContainer}, a {@code IvyConfigurationContainer} provides * convenient methods for adding, querying, filtering, and applying actions to the set of {@link IvyConfiguration}s. * * <pre class='autoTested'> * plugins { * id 'ivy-publish' * } * * def publication = publishing.publications.create("my-pub", IvyPublication)
Registered: 2024-06-12 18:38 - Last Modified: 2023-10-12 14:02 - 1.4K bytes - Viewed (0) -
src/go/doc/testdata/generics.1.golden
// Single is not a factory function. func Single[T any]() *T // Slice is not a factory function. func Slice[T any]() []T TYPES // AFuncType demonstrates filtering of parameters and type ... type AFuncType[T ~struct{ f int }] func(_ struct{ f int }) // Constraint is a constraint interface with two type parameters.
Registered: 2024-06-12 16:32 - Last Modified: 2021-11-10 18:06 - 1.6K bytes - Viewed (0) -
platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestFilteringSamplesIntegrationTest.groovy
import org.gradle.integtests.fixtures.Sample import org.junit.Rule class JUnit4TestFilteringSamplesIntegrationTest extends AbstractIntegrationSpec { @Rule Sample sample = new Sample(temporaryFolder, 'testing/filtering/groovy') def setup() { executer.withRepositoryMirrors() } def "uses test filter"() { when: inDirectory(sample.dir) run("test") then:
Registered: 2024-06-12 18:38 - Last Modified: 2023-09-18 20:52 - 1.5K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy
}); // Remove duplicates (equal adjacent elements) - a new, un@Incubating type will be here twice, as 2 errors are reported; use stringified JSON to compare // Filtering an array is NOT in place result.acceptedApiChanges = result.acceptedApiChanges.filter((item, pos, ary) => (!pos || (JSON.stringify(item) != JSON.stringify(ary[pos - 1])))); return result;
Registered: 2024-06-12 18:38 - Last Modified: 2023-02-07 20:38 - 7.2K bytes - Viewed (0) -
subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ArtifactResolutionResult.java
/** * <p>Return a set of {@link ComponentResult} instances representing all successfully resolved components. * * <p>Calling this method is the same as calling {@link #getComponents()} and filtering the resulting set for elements of type {@link ComponentArtifactsResult}. * * @return the set of all successfully resolved components */ Set<ComponentArtifactsResult> getResolvedComponents();
Registered: 2024-06-12 18:38 - Last Modified: 2018-10-10 09:42 - 1.9K bytes - Viewed (0)