Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 166 for wildcards (0.19 sec)

  1. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

                boolean wildcard = nodeNameTest.isWildcard();
                String testName = nodeNameTest.getNodeName().getName();
                String testPrefix = nodeNameTest.getNodeName().getPrefix();
                if (wildcard && testPrefix == null) {
                    return true;
                }
                if (wildcard || testName.equals(nodeName)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

        parentRef:
          name: isolation
          namespace: gateway-conformance-infra
          sectionName: wildcard-example-com
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: attaches-to-wildcard-foo-example-com-with-hostname-intersection
      namespace: gateway-conformance-infra
    spec: null
    status:
      parents:
      - conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonsState.groovy

        }
    
        private DaemonsState() {
            this.busy = -1
            this.idle = -1
        }
    
        String toString() {
            wildcard ? "DaemonsState{*}" : "DaemonsState{busy=$busy,idle=$idle}"
        }
    
        boolean matches(DaemonsState rhs) {
            wildcard || (this.busy == rhs.busy && this.idle == rhs.idle)
        }
    
        boolean isWildcard() {
            busy < 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

    import org.apache.maven.settings.Mirror;
    
    /**
     * DefaultMirrorSelector
     */
    @Named
    @Singleton
    public class DefaultMirrorSelector implements MirrorSelector {
    
        private static final String WILDCARD = "*";
    
        private static final String EXTERNAL_WILDCARD = "external:*";
    
        private static final String EXTERNAL_HTTP_WILDCARD = "external:http:*";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication_test.go

    					"*.com":                 {Token: "third"},
    					"*":                     {Token: "fallback"},
    				},
    			},
    			expected: rest.Config{BearerToken: "exact"},
    		},
    		{
    			name:       "wildcard match with default https port",
    			serverName: "one.two.three.com:443",
    			kubeconfig: clientcmdapi.Config{
    				AuthInfos: map[string]*clientcmdapi.AuthInfo{
    					"*.two.three.com:443": {Token: "first-with-port"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/workload.go

    		addresses = req.Delta.Subscribed
    	} else {
    		if w.Wildcard {
    			addresses = updatedAddresses
    		} else {
    			// this is from the external triggers instead of request
    			// send response for all the subscribed intersect with the updated
    			addresses = updatedAddresses.IntersectInPlace(subs)
    		}
    	}
    
    	if !w.Wildcard {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. releasenotes/notes/ignore-port.yaml

    area: traffic-management
    issues:
    - 40474
    releaseNotes:
    - |
      **Fixed** an issue causing traffic to not match (and return a `404`) when using wildcard domain names and including an unexpected port in the `Host` header.
    - |
      **Fixed** an issue causing traffic to match an unexpected route when using wildcard domain names and including an port in the `Host` header.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:11 UTC 2022
    - 581 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

    metadata:
      name: testing-service-01-test-02
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-02
      hosts:
      - 'web.testing-02.com' # Expected: no validation error since this host match the wildcard
      http:
      - match:
        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  9. internal/event/rules.go

    	for pattern := range rules {
    		if wildcard.MatchSimple(pattern, objectName) {
    			return true
    		}
    	}
    	return false
    }
    
    // Match - returns TargetIDSet matching object name in rules.
    func (rules Rules) Match(objectName string) TargetIDSet {
    	targetIDs := NewTargetIDSet()
    
    	for pattern, targetIDSet := range rules {
    		if wildcard.MatchSimple(pattern, objectName) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_moved.txt

    go list -m all
    stdout 'example.com/join/subpkg v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    # (A wildcard pattern applies to both packages and modules,
    # because we define wildcard matching to apply after version resolution.)
    go get example.com/join/subpkg/...@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top