Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for wildCards (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo1/2bar3/4baz/abc.xml")))
        }
    
        @Test
        fun `recognizes double-asterisk wildcards across path segments`() {
            val instance = createFromPaths(listOf("foo/**/bar/**"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/one/two/bar/three")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/net/http/server.go

    //
    // Normally a wildcard matches only a single path segment,
    // ending at the next literal slash (not %2F) in the request URL.
    // But if the "..." is present, then the wildcard matches the remainder of the URL path, including slashes.
    // (Therefore it is invalid for a "..." wildcard to appear anywhere but at the end of a pattern.)
    // The match for a wildcard can be obtained by calling [Request.PathValue] with the wildcard's name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    - "cmd" expands to the Go repository's commands and their
    internal libraries.
    
    Import paths beginning with "cmd/" only match source code in
    the Go repository.
    
    An import path is a pattern if it includes one or more "..." wildcards,
    each of which can match any string, including the empty string and
    strings containing slashes. Such a pattern expands to all package
    directories found in the GOPATH trees with names matching the
    patterns.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    		})
    	}
    }
    
    // performWildcardQueries populates the candidates for each query whose pattern
    // is a wildcard.
    //
    // The candidates for a given module path matching (or containing a package
    // matching) a wildcard query depend only on the initial build list, but the set
    // of modules may be expanded by other queries, so wildcard queries need to be
    // re-evaluated whenever a potentially-matching module path is added to the
    // build list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    			}
    		}
    
    		// Next check the hostnames are a match. This is a bi-directional wildcard match. Only one route
    		// hostname must match for it to be allowed (but the others will be filtered at runtime)
    		// If either is empty its treated as a wildcard which always matches
    
    		if len(hostnames) == 0 {
    			hostnames = []k8s.Hostname{"*"}
    		}
    		if len(parent.Hostnames) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // To eliminate ambiguity about which module versions are used in the build, the
    // arguments must satisfy the following constraints:
    //
    // - Arguments must be package paths or package patterns (with "..." wildcards).
    // They must not be standard packages (like fmt), meta-patterns (std, cmd,
    // all), or relative or absolute file paths.
    //
    // - All arguments must have the same version suffix. Different queries are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. cmd/batch-job-common-types.go

    func (kv BatchJobKV) Empty() bool {
    	return kv.Key == "" && kv.Value == ""
    }
    
    // Match matches input kv with kv, value will be wildcard matched depending on the user input
    func (kv BatchJobKV) Match(ikv BatchJobKV) bool {
    	if kv.Empty() {
    		return true
    	}
    	if strings.EqualFold(kv.Key, ikv.Key) {
    		return wildcard.Match(kv.Value, ikv.Value)
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    				"*.cluster.local": nil,
    			},
    			expectedGateway: map[string][]string{
    				// Exact service matches do not get the wildcard applied
    				"alt-known.default.svc.cluster.local": {"outbound|80||alt-known.default.svc.cluster.local"},
    				"known.default.svc.cluster.local":     {"outbound|80||known.default.svc.cluster.local"},
    				// The wildcard
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta.go

    		} else {
    			deltaLog.Debugf("ADS:%s: INIT %s %s", stype, con.ID(), request.ResponseNonce)
    		}
    
    		res, wildcard := deltaWatchedResources(nil, request)
    		con.proxy.WatchedResources[request.TypeUrl] = &model.WatchedResource{
    			TypeUrl:       request.TypeUrl,
    			ResourceNames: res,
    			Wildcard:      wildcard,
    		}
    		return true
    	}
    
    	// If there is mismatch in the nonce, that is a case of expired/stale nonce.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/events.go

    	WildCardEvent = framework.ClusterEvent{Resource: framework.WildCard, ActionType: framework.All, Label: "WildCardEvent"}
    	// UnschedulableTimeout is the event when a pod stays in unschedulable for longer than timeout.
    	UnschedulableTimeout = framework.ClusterEvent{Resource: framework.WildCard, ActionType: framework.All, Label: "UnschedulableTimeout"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top