Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,788 for patching (0.36 sec)

  1. pkg/registry/storage/volumeattributesclass/storage/storage_test.go

    	test.TestWatch(
    		validNewVolumeAttributesClass("foo"),
    		// 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"},
    		},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/matchingVendorWithCC.out

       > Failed to calculate the value of task ':compileJava' property 'javaCompiler'.
          > Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=11, vendor=matching('customString'), implementation=vendor-specific} for %OS% on %ARCH%.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 513 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list.matching { it != "b" }.lastIndexOf("c") == 1
            list.matching { it != "b" }.lastIndexOf("b") == -1
            list.matching { it != "b" }.lastIndexOf("z") == -1
        }
    
        def "can get ListIterator over filtered elements"() {
            given:
            list.addAll(["a", "b", "c"])
    
            when:
            def iter = list.matching { it != "b" }.listIterator()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/EmptyFileTree.java

            return true;
        }
    
        @Override
        public FileTree matching(Closure filterConfigClosure) {
            return this;
        }
    
        @Override
        public FileTree matching(Action<? super PatternFilterable> filterConfigAction) {
            return this;
        }
    
        @Override
        public FileTreeInternal matching(PatternFilterable patterns) {
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/io/fs/glob.go

    type GlobFS interface {
    	FS
    
    	// Glob returns the names of all files matching pattern,
    	// providing an implementation of the top-level
    	// Glob function.
    	Glob(pattern string) ([]string, error)
    }
    
    // Glob returns the names of all files matching pattern or nil
    // if there is no matching file. The syntax of patterns is the same
    // as in [path.Match]. The pattern may describe hierarchical names such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:25:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunner.java

                        throw new IllegalStateException("Enabling file system watching via --watch-fs (or via the " + StartParameterBuildOptions.WatchFileSystemOption.GRADLE_PROPERTY + " property) with --project-cache-dir also specified is not supported; remove either option to fix this problem");
                    case DEFAULT:
                        LOGGER.info("File system watching is disabled because --project-cache-dir is specified");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                    "matcher_tree": {
                      "input": {
                        "name": "ip",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.matching.common_inputs.network.v3.DestinationIPInput"
                        }
                      },
                      "custom_match": {
                        "name": "ip",
                        "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

    import java.util.ArrayList;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    
    /**
     * A {@link ArtifactVariantSelector} that uses attribute matching to select a matching set of artifacts.
     *
     * If no producer variant is compatible with the requested attributes, this selector will attempt to construct a chain of artifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            e2.message == message
                .replace("tasks that match", "excluded tasks that match")
                .replace("matching tasks", "matching excluded tasks")
    
            where:
            path        | message
            ""          | "Cannot locate matching tasks for an empty path. The path should include a task name (for example ':help' or 'help')."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/ConditionalInvalidation.java

    import java.util.function.Predicate;
    
    /**
     * A feature of a cache-like storage that provides an ability to invalidate the items matching a predicate.
     * @param <T> the type of the stored items.
     */
    public interface ConditionalInvalidation<T> {
        /**
         * Instructs the cache to drop the stored items matching the predicate.
         */
        void invalidateItemsMatching(Predicate<T> predicate);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top