Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 2,390 for patching (0.5 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/CompositeFileTree.java

        }
    
        @Override
        public FileTree matching(final Closure filterConfigClosure) {
            return newFilteredFileTree(() -> {
                // For backwards compatibility, run the closure each time the file tree contents are queried
                return configure(filterConfigClosure, patternSetFactory.create());
            });
        }
    
        @Override
        public FileTree matching(final Action<? super PatternFilterable> filterConfigAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphSelectionCandidates.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    public interface GraphSelectionCandidates {
    
        /**
         * Returns the set of variants to select from during attribute matching, or an empty list of this
         * component does not support attribute matching.
         */
        List<? extends VariantGraphResolveState> getVariantsForAttributeMatching();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/ProjectSpec.java

         * @return the project.
         * @throws InvalidUserDataException When project cannot be selected due to some user input mismatch, or when there are no matching projects
         * or multiple matching projects.
         */
        <T extends ProjectIdentifier> T selectProject(String settingsDescription, ProjectRegistry<? extends T> registry) throws InvalidUserDataException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 27 03:42:56 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/normalization/MetaInfNormalization.java

        /**
         * Ignore attributes in {@code META-INF/MANIFEST.MF} within archives matching {@code name}. {@code name} is matched case-insensitively with the manifest attribute name.
         *
         * @since 6.6
         */
        void ignoreAttribute(String name);
    
        /**
         * Ignore keys in properties files stored in {@code META-INF} within archives matching {@code name}. {@code name} is matched case-sensitively with the property key.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 18:10:29 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractQueryDomainObjectContainerIntegrationTest.groovy

            expect:
            succeeds "help"
    
            where:
            queryMethod << getQueryMethods()
        }
    
        def "can execute query method #queryMethod.key from matching.configureEach"() {
            buildFile << """
                testContainer.matching({ it in testContainer.type }).configureEach {
                    ${queryMethod.value}
                }
                toBeRealized.get()
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginCollection.java

            return filtered(createFilter(type));
        }
    
        @Override
        public PluginCollection<T> matching(Spec<? super T> spec) {
            return filtered(createFilter(spec));
        }
    
        @Override
        public PluginCollection<T> matching(Closure spec) {
            return matching(Specs.<T>convertClosureToSpec(spec));
        }
    
        @Override
        public Action<? super T> whenPluginAdded(Action<? super T> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 20 10:28:05 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  7. pkg/registry/autoscaling/horizontalpodautoscaler/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewHorizontalPodAutoscaler("foo"),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    			{"name": "foo"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. pkg/registry/networking/networkpolicy/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNetworkPolicy(),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    			{"name": "foo"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

    import org.gradle.caching.internal.controller.operations.PackOperationDetails;
    import org.gradle.caching.internal.controller.operations.PackOperationResult;
    import org.gradle.caching.internal.controller.operations.UnpackOperationDetails;
    import org.gradle.caching.internal.controller.operations.UnpackOperationResult;
    import org.gradle.caching.internal.controller.service.BuildCacheLoadResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Partially.java

     * {@code GwtIncompatible}. This is more accurate for {@link Futures#catching}, which is available
     * under GWT but with a slightly different signature.
     *
     * <p>We can't use {@code PartiallyGwtIncompatible} because then the GWT compiler wouldn't recognize
     * it as a {@code GwtIncompatible} annotation. And for {@code Futures.catching}, we need the GWT
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top