Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 960 for patching (0.17 sec)

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

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/plugin/policy/matching"
    )
    
    // Matcher is used for matching ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding to attributes
    type PolicyMatcher interface {
    	admission.InitializationValidator
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectContainerIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            succeeds "verify"
        }
    
        def "chained lookup of testContainer.withType.matching"() {
            buildFile << """
                testContainer.withType(testContainer.type).matching({ it.name.endsWith("foo") }).all { element ->
                    assert element.name in ['foo', 'barfoo']
                }
    
                testContainer.register("foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_patterns.txt

    cp go.mod.orig go.mod
    ! go get rsc.io/quote/x...
    stderr 'go: module rsc.io/quote@upgrade found \(v1.5.2\), but does not contain packages matching rsc.io/quote/x...'
    ! grep 'require rsc.io/quote' go.mod
    
    ! go get rsc.io/quote/x/...
    stderr 'go: module rsc.io/quote@upgrade found \(v1.5.2\), but does not contain packages matching rsc.io/quote/x/...'
    ! grep 'require rsc.io/quote' go.mod
    
    # If a pattern matches no packages within a module, the module should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.groovy

                   .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
                       "Some toolchain resolvers had provisioning failures: custom (Unable to download toolchain matching the requirements " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    				foundReserved = true
    				break
    			}
    		}
    		if !foundReserved {
    			funcName = funcName[:ind[0]]
    			break
    		}
    	}
    	return funcName
    }
    
    // Prune removes all nodes beneath a node matching dropRx, and not
    // matching keepRx. If the root node of a Sample matches, the sample
    // will have an empty stack.
    func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
    	prune := make(map[uint64]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonConnector.java

         *
         * @return A connection to a matching daemon, or null if not running.
         */
        @Nullable
        DaemonClientConnection maybeConnect(DaemonConnectDetails daemonAddress);
    
        /**
         * Attempts to connect to a daemon that matches the given constraint.
         *
         * @return A connection to a matching daemon, or null if none running.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (1)
  7. subprojects/core/src/main/java/org/gradle/api/internal/DelegatingNamedDomainObjectSet.java

            return getDelegate().named(nameFilter);
        }
    
        @Override
        public NamedDomainObjectSet<T> matching(Spec<? super T> spec) {
            return getDelegate().matching(spec);
        }
    
        @Override
        public NamedDomainObjectSet<T> matching(Closure spec) {
            return getDelegate().matching(spec);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactView.java

        /**
         * Returns the collection of artifacts matching the requested attributes that are sourced from Components matching the specified filter.
         */
        ArtifactCollection getArtifacts();
    
        /**
         * Returns the collection of artifact files matching the requested attributes that are sourced from Components matching the specified filter.
         */
        FileCollection getFiles();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 29 17:24:04 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

            def testClasses = findTestClasses()
            def matching = testClasses.find { it.key.startsWith(testClass) }
            if (!matching) {
                throw new AssertionError("Could not find test class matching ${testClass}. Found ${testClasses.keySet()}")
            }
            matching
        }
    
        private def findTestClasses() {
            Map testClasses = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributesSchema.java

         * @param <T> the concrete type of the attribute
         *
         * @return the matching strategy for this attribute
         */
        <T> AttributeMatchingStrategy<T> attribute(Attribute<T> attribute);
    
        /**
         * Configures the matching strategy for an attribute. The first call to this method for a specific attribute
         * will create a new matching strategy, whereas subsequent calls will configure the existing one.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top