Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,390 for patching (0.15 sec)

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

        }
    
        @Override
        public FileTree matching(Closure filterConfigClosure) {
            return matching(configure(filterConfigClosure, patternSetFactory.create()));
        }
    
        @Override
        public FileTree matching(Action<? super PatternFilterable> filterConfigAction) {
            PatternSet patternSet = patternSetFactory.create();
            filterConfigAction.execute(patternSet);
            return matching(patternSet);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/go/build/syslist.go

    // internal/goos/gengoos.go. If you change this file, look at those
    // files as well.
    
    // 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: Thu Mar 30 18:50:57 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pkg/registry/core/endpoint/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewEndpoints(),
    		// 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 Aug 12 20:55:35 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/GwtFuturesCatchingSpecialization.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Hidden superclass of {@link Futures} that provides us a place to declare special GWT versions of
     * the {@link Futures#catching(ListenableFuture, Class, com.google.common.base.Function)
     * Futures.catching} family of methods. Those versions have slightly different signatures.
     */
    @ElementTypesAreNonnullByDefault
    abstract class GwtFuturesCatchingSpecialization {
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 08 20:30:27 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

                        }
                        FileSystemWatchingStatistics statisticsSinceLastBuild;
                        if (watchRegistry == null) {
                            if (couldDetectUnsupportedFileSystems) {
                                context.setStatus("Starting file system watching");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

         */
        private FileHierarchySet watchableFiles = FileHierarchySet.empty();
    
        /**
         * Files in locations that do not support watching.
         *
         * Those are the mount points of file systems that do not support watching.
         */
        private FileHierarchySet unwatchableFiles = FileHierarchySet.empty();
    
        /**
         * Hierarchies in usage order, most recent first.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentSelectionContext.java

        /**
         * Marks the given module component identifier as matching.
         *
         * @param moduleComponentIdentifier Chosen module component identifier
         */
        void matches(ModuleComponentIdentifier moduleComponentIdentifier);
    
        void failed(ModuleVersionResolveException failure);
    
        /**
         * Registers that there was no matching module component identifier.
         */
        void noMatchFound();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/model/GradleDistribution.kt

         */
        @get:InputFiles
        @get:PathSensitive(PathSensitivity.RELATIVE)
        val staticContent: FileCollection
            get() = gradleHomeDir.asFileTree.matching {
                exclude("lib/**")
                exclude("src/**")
                exclude("docs/**")
                exclude("README")
                exclude("getting-started.html")
            }
    
        @get:Classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 19:35:39 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. pkg/controller/job/pod_failure_policy_test.go

    							},
    						},
    					},
    				},
    			},
    			wantJobFailureMessage: ptr.To("Container main-container for pod default/mypod failed with exit code 2 matching FailJob rule at index 1"),
    			wantCountFailed:       true,
    			wantAction:            &failJob,
    		},
    		"unknown action for rule matching by pod conditions - skip rule with unknown action": {
    			podFailurePolicy: &batch.PodFailurePolicy{
    				Rules: []batch.PodFailurePolicyRule{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pkg/registry/core/secret/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewSecret("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: Mon Aug 12 20:55:35 UTC 2019
    - 3.8K bytes
    - Viewed (0)
Back to top