Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 721 for patching (0.14 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

    class JavaToolchainQueryServiceTest extends Specification {
    
        JavaToolchainSpec createSpec() {
            TestUtil.objectFactory().newInstance(DefaultToolchainSpec)
        }
    
        def "can query for matching toolchain using version #versionToFind"() {
            given:
            def queryService = setupInstallations(versionRange(8, 12))
    
            when:
            def filter = createSpec()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/eviction_test.go

    		eviction *policy.Eviction
    
    		badNameInURL bool
    
    		expectError   string
    		expectDeleted bool
    		podPhase      api.PodPhase
    		podName       string
    	}{
    		{
    			name: "matching pdbs with no disruptions allowed, pod running",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "default"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/types.go

    	// /foo/barbaz). If multiple matching paths exist in an Ingress spec, the
    	// longest matching path is given priority.
    	// Examples:
    	// - /foo/bar does not match requests to /foo/barbaz
    	// - /foo/bar matches request to /foo/bar and /foo/bar/baz
    	// - /foo and /foo/ both match requests to /foo and /foo/. If both paths are
    	//   present in an Ingress spec, the longest matching path (/foo/) is given
    	//   priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    2. Gradle detects <<#sec:auto_detection,locally installed toolchains>>.
    3. Gradle chooses a toolchain matching the requirements (any Java 17 toolchain for the example above).
    4. If no matching toolchain is found, Gradle can automatically download a matching one based on the configured <<#sub:download_repositories,toolchain download repositories>>.
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            if (!path.isAbsolute() && path.segmentCount() == 1) {
                return new ProjectResolutionResult(targetBuild, targetBuild.getMutableModel().getDefaultProject().getOwner(), true, path.getName());
            }
    
            // <path>:name -> resolve <path> to a project + select task with matching name in that project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. releasenotes/notes/jwt-aud.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 49913
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 159 bytes
    - Viewed (0)
  7. src/internal/trace/testtrace/expectation.go

    	}
    	if e.failure && err == nil {
    		return fmt.Errorf("expected error while reading the trace: want something matching %q, got none", e.errorMatcher)
    	}
    	if e.failure && err != nil && !e.errorMatcher.MatchString(err.Error()) {
    		return fmt.Errorf("unexpected error while reading the trace: want something matching %q, got %s", e.errorMatcher, err.Error())
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe.go

    			fmt.Fprintf(writer, "%sWARNING POD DOES NOT MATCH ANY SUBSETS.  (Non matching subsets %s)\n",
    				printSpaces(initPrintNum+printLevel1), strings.Join(nonmatchingSubsets, ","))
    		}
    		fmt.Fprintf(writer, "%sMatching subsets: %s\n",
    			printSpaces(initPrintNum+printLevel1), strings.Join(matchingSubsets, ","))
    		if len(nonmatchingSubsets) > 0 {
    			fmt.Fprintf(writer, "%s(Non-matching subsets %s)\n",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. src/cmd/doc/main.go

    	flagSet.StringVar(&chdir, "C", "", "change to `dir` before running command")
    	flagSet.BoolVar(&unexported, "u", false, "show unexported symbols as well as exported")
    	flagSet.BoolVar(&matchCase, "c", false, "symbol matching honors case (paths not affected)")
    	flagSet.BoolVar(&showAll, "all", false, "show all documentation for package")
    	flagSet.BoolVar(&showCmd, "cmd", false, "show symbols with package docs even if package is a command")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/util/internal/NameMatcher.java

        private String pattern;
    
        /**
         * Locates the best match for a camel case pattern in a key set of a map and returns the corresponding value.
         *
         * @return The matching item if exactly 1 match found, null if no matches or multiple matches.
         * @see #find(String, Collection)
         */
        public <T> T find(String pattern, Map<String, ? extends T> items) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top