Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,390 for patching (0.18 sec)

  1. src/cmd/go/internal/modindex/syslist.go

    // This file is a lightly modified copy go/build/syslist_test.go.
    
    package modindex
    
    // knownOS is the list of past, present, and future known GOOS values.
    // Do not remove from this list, as it is used for filename matching.
    // If you add an entry to this list, look at unixOS, below.
    var knownOS = map[string]bool{
    	"aix":       true,
    	"android":   true,
    	"darwin":    true,
    	"dragonfly": true,
    	"freebsd":   true,
    	"hurd":      true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 01:45:58 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/script/test_fuzz_test_race.txt

    # but without actually fuzzing the target (by using a non-matching pattern)
    go test -fuzz=xxx -race -v
    ! stderr 'race detected during execution of test'
    
    # Test with just race instrumentation enabled
    go test -race -v
    ! stderr 'race detected during execution of test'
    
    # Test with coverage and race instrumentation enabled, and a matching fuzz
    # pattern
    go test -fuzz=FuzzRace -race -v -fuzztime=200x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 966 bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ArtifactVariantSelector.java

     * round of attribute matching to select a variant containing artifacts.
     *
     * This class is intentionally named similarly to {@link GraphVariantSelector}, as it has a
     * similar purpose.  An instance of {@link ResolutionFailureHandler} should be provided
     * to allow the caller to handle failures in a consistent way - all matching failures should be reported via
     * calls to that instance.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 00:51:35 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultPlatformResolvers.java

            NamedDomainObjectSet<T> allWithType = platforms.withType(type);
            T matching = CollectionUtils.findFirst(allWithType, new Spec<T>() {
                @Override
                public boolean isSatisfiedBy(T element) {
                    return element.getName().equals(target);
                }
            });
    
            if (matching == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pkg/registry/resource/resourceclaimparameters/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewResourceClaimParameters("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: Thu Mar 07 15:15:31 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top