- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 202 for matchingMG (0.06 seconds)
-
cmd/metrics-v3-handler.go
// First collect all matching MetricsGroup's matchingMG := make(map[collectorPath]*MetricsGroup) for _, collPath := range h.metricsData.collectorPaths { if collPath.isDescendantOf(path) { if v, ok := h.metricsData.mgMap[collPath]; ok { matchingMG[collPath] = v } else if v, ok := h.metricsData.bucketMGMap[collPath]; ok { matchingMG[collPath] = v } } }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Oct 10 18:57:03 GMT 2025 - 7.7K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
/** * Returns the most specific directive matching the given user agent. * The method finds the longest matching user agent pattern in the directives, * excluding the general "*" pattern which matches all bots. * * @param userAgent the user agent string to match against directives, * can be null (treated as empty string) * @return the most specific matching directive, or null if no directive matchesCreated: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 18.5K bytes - Click Count (0) -
build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateAgpVersionsTest.groovy
VersionNumber.parse("9.10") | ["9.10.1", "9.11.0-rc01", "9.12.0-beta01", "9.13.0-alpha01"] } def "selects matching gradle major versions and latest major minors when no matching gradle major stable or rc available (minimumSupported=#minimumSupported)"() { given: def gradleVersion = GradleVersion.version("9.2") def allVersions = [
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Oct 24 09:10:28 GMT 2025 - 4.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PathMatcherFactory.java
* <p> * The pathnames used for matching will be relative to the specified base directory * and use {@code '/'} as separator, regardless of the hosting operating system. * * @param baseDirectory the base directory for relativizing paths during matching * @param includes the patterns of files to include, or null/empty for including all filesCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Jul 21 19:37:56 GMT 2025 - 7.5K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/model/GradleDistribution.kt
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 18 18:02:41 GMT 2025 - 2.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/SearchBody.java
public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Search term for key matching */ public String term; /** Query pattern for key matching */ public String query;Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/FessAppService.java
*/ public FessAppService() { // Default constructor } /** * Wraps a query string with wildcard characters to enable partial matching. * This method ensures that the query string is surrounded by asterisks (*) * to support prefix and suffix matching in search operations. * * @param query the query string to wrap with wildcards * @return the wrapped query string with leading and trailing asterisksCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
* including name wildcards, handler name wildcards, and description matching. * Results are ordered by sort order and name in ascending order.</p> * * <p>Description matching supports:</p> * <ul> * <li>Wildcard matching (if starts or ends with *)</li> * <li>Prefix matching (if ends with *)</li> * <li>Exact phrase matching (otherwise)</li> * </ul> *Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8K bytes - Click Count (0) -
cmd/admin-handlers-pools.go
var err error idx, err = strconv.Atoi(pool) if err != nil { // We didn't find any matching pools, invalid input writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errInvalidArgument), r.URL) return } } else { idx = globalEndpoints.GetPoolIdx(pool) if idx == -1 { // We didn't find any matching pools, invalid input writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errInvalidArgument), r.URL)
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 11.1K bytes - Click Count (0) -
README.md
- **Exception Handling** (`org.codelibs.core.exception`) - Runtime exception wrappers for common checked exceptions with consistent error handling ### Modern Java 21 Support - **Pattern Matching** - Leverages modern Java pattern matching for efficient type checking and conversion - **Switch Expressions** - Optimized implementations using switch expressions for better performance
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sun Aug 31 02:56:02 GMT 2025 - 12.7K bytes - Click Count (0)