Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 412 for patched (0.11 sec)

  1. releasenotes/notes/bds-removal.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 196 bytes
    - Viewed (0)
  2. pkg/credentialprovider/keyring.go

    		return false, nil
    	}
    	for k, globURLPart := range globURLParts {
    		targetURLPart := targetURLParts[k]
    		matched, err := filepath.Match(globURLPart, targetURLPart)
    		if err != nil {
    			return false, err
    		}
    		if !matched {
    			// glob mismatch for some part
    			return false, nil
    		}
    	}
    	// everything matches
    	return true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/net/http/66405.md

    For inbound requests, the new [Request.Pattern] field contains the [ServeMux]
    pattern (if any) that matched the request. This field is not set when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 181 bytes
    - Viewed (0)
  4. src/internal/trace/batchcursor.go

    }
    
    func (b *batchCursor) nextEvent(batches []batch, freq frequency) (ok bool, err error) {
    	// Batches should generally always have at least one event,
    	// but let's be defensive about that and accept empty batches.
    	for b.idx < len(batches) && len(batches[b.idx].data) == b.dataOff {
    		b.idx++
    		b.dataOff = 0
    		b.lastTs = 0
    	}
    	// Have we reached the end of the batches?
    	if b.idx == len(batches) {
    		return false, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm_arm64_test.go

    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Errorf("Assemble failed: %v, output: %s", err, out)
    	}
    	matched, err := regexp.MatchString(pattern, string(out))
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !matched {
    		t.Errorf("The alignment is not correct: %t, output:%s\n", matched, out)
    	}
    
    	// build generated file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * @return The mirror specification for the repository or {@code null} if no mirror matched.
         */
        Mirror getMirror(ArtifactRepository repository, List<Mirror> mirrors);
    
        /**
         * Injects the mirroring information into the specified repositories. For each repository that is matched by a
         * mirror, its URL and ID will be updated to match the values from the mirror specification. Repositories without a
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/MatchesSignatureGeneratingSignatureTreeVisitor.java

                paramIndex + 1, paramIndex, entryParamType, Array.class
            );
            result.add("/** Matched $L */\n", JavadocUtils.interceptedCallableLink(childRequest));
            result.addStatement("return new $T(true, $L)", SIGNATURE_AWARE_CALL_INTERCEPTOR_SIGNATURE_MATCH, matchArgs);
            result.endControlFlow();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

            OsxFileWatcher watcher,
            FileWatcherProbeRegistry probeRegistry,
            WatchableHierarchies watchableHierarchies
        ) {
            return new HierarchicalFileWatcherUpdater(watcher, DarwinFileWatcherRegistryFactory::validateLocationToWatch, probeRegistry, watchableHierarchies, root -> Collections.emptyList());
        }
    
        /**
         * The macOS native watcher reports the canonical path for watched paths.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/testing/example.go

    	ok = true
    
    	m := newMatcher(matchString, *match, "-test.run", *skip)
    
    	var eg InternalExample
    	for _, eg = range examples {
    		_, matched, _ := m.fullName(nil, eg.Name)
    		if !matched {
    			continue
    		}
    		ran = true
    		if !runExample(eg) {
    			ok = false
    		}
    	}
    
    	return ran, ok
    }
    
    func sortLines(output string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/options/generic.go

    		`"patchtype" can be one of "strategic", "merge" or "json" and they match the patch formats ` +
    		`supported by kubectl. The default "patchtype" is "strategic". "extension" must be either ` +
    		`"json" or "yaml". "suffix" is an optional string that can be used to determine ` +
    		`which patches are applied first alpha-numerically.`
    	fs.StringVar(patchesDir, Patches, *patchesDir, usage)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top