Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,767 for patching (0.32 sec)

  1. src/cmd/go/internal/modget/query.go

    	// A path-literal query results in only one set: the path itself, which
    	// may resolve to either a package path or a module path.
    	//
    	// A wildcard query results in one set for each matching module path, each
    	// module for which the matching version contains at least one matching
    	// package, and (if no other modules match) one candidate set for the pattern
    	// overall if no existing match is identified in the build list.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. pkg/registry/resource/resourceslice/storage/storage_test.go

    	test.TestWatch(
    		validNewResourceSlice("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 14 17:07:36 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Added warning for dup ports update/patching in pod's container ports and service ports. ([#113245](https://github.com/kubernetes/kubernetes/pull/113245), [@pacoxu](https://github.com/pacoxu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  4. pilot/pkg/model/policyattachment_test.go

    			enableSelectorPolicies: true,
    		},
    		{
    			name:      "waypoint and non-matching targetRef",
    			selection: sampleWaypoint,
    			policy: &mockPolicyTargetGetter{
    				targetRef: sampleTargetRef,
    			},
    			expected:               false,
    			enableSelectorPolicies: true,
    		},
    		{
    			name:      "waypoint and matching targetRefs",
    			selection: sampleWaypoint,
    			policy: &mockPolicyTargetGetter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

        }
    
        protected static Matcher<? super String> matching(String pattern) {
            def compiledPattern = Pattern.compile(pattern)
            return matching({ it.appendText("a string matching the pattern").appendValue(pattern) }, { String item ->
                compiledPattern.matcher(item).matches()
            } as Predicate<String>)
        }
    
        protected static <T> Matcher<T> matching(Consumer<Description> describe, Predicate<T> match) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommandTest.groovy

            ])
            result.size() == 1
        }
    
        def "can parse output with no installations"() {
            given:
            def output = """
    Unable to find any JVMs matching version "(null)".
    Matching Java Virtual Machines (0):
    
    Default Java Virtual Machines (0):
    
    No Java runtime present, try --request to install.
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            assertSuggestsReviewingAlgorithm()
            assertSuggestsViewingDocs("No matching variant errors are explained in more detail at https://docs.gradle.org/${GradleVersion.current().version}/userguide/variant_model.html#sub:variant-no-match.")
        }
    
        @ToBeFixedForConfigurationCache
        def "demonstrate no matching graph variants selection failure for externalDep"() {
            noMatchingGraphVariantsForExternalDep.prepare()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcshared/testdata/libgo5/libgo5.go

    	"syscall"
    	"time"
    )
    
    // The channel used to read SIGIO signals.
    var sigioChan chan os.Signal
    
    // CatchSIGIO starts catching SIGIO signals.
    //
    //export CatchSIGIO
    func CatchSIGIO() {
    	sigioChan = make(chan os.Signal, 1)
    	signal.Notify(sigioChan, syscall.SIGIO)
    }
    
    // ResetSIGIO stops catching SIGIO signals.
    //
    //export ResetSIGIO
    func ResetSIGIO() {
    	signal.Reset(syscall.SIGIO)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 986 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/matchingVendorWithoutCC.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)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DomainObjectCollectionExtensions.kt

    /**
     * Returns a collection containing the objects in this collection of the given type. The
     * returned collection is live, so that when matching objects are later added to this
     * collection, they are also visible in the filtered collection.
     *
     * @param S The type of objects to find.
     * @return The matching objects. Returns an empty collection if there are no such objects
     * in this collection.
     * @see [DomainObjectCollection.withType]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top