Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,767 for patching (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/plugin.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/initializer"
    	"k8s.io/apiserver/pkg/admission/plugin/policy/matching"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    [[finding_problems]]
    == Finding problems with task output caching
    
    Below we describe a step-by-step process that should help shake out any problems with caching in your build.
    
    === Ensure incremental build works
    
    First, make sure your build does the right thing without the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

        }
    
        /**
         * Gradle's process of attribute matching against configurations and their variants consists of two steps.
         * First, attribute matching is performed against the implicit variants of each consumable configuration.
         * Then, assuming attribute matching returns a single matched configuration, Gradle will then perform
         * attribute matching against each sub-variant (including the implicit) of the matched configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. pkg/registry/resource/resourceclassparameters/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewResourceClassParameters("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 21:21:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/matcher/string.go

    	}
    }
    
    // StringMatcherPrefix create a string matcher for prefix matching.
    func StringMatcherPrefix(prefix string, ignoreCase bool) *matcher.StringMatcher {
    	return &matcher.StringMatcher{
    		IgnoreCase: ignoreCase,
    		MatchPattern: &matcher.StringMatcher_Prefix{
    			Prefix: prefix,
    		},
    	}
    }
    
    // StringMatcherSuffix create a string matcher for suffix matching.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top