Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 461 for wildCards (0.2 sec)

  1. pkg/dns/client/dns_test.go

    		},
    		{
    			name:     "success: wild card returns A record correctly",
    			host:     "foo.wildcard.",
    			expected: a("foo.wildcard.", []netip.Addr{netip.MustParseAddr("10.10.10.10")}),
    		},
    		{
    			name:     "success: specific wild card returns A record correctly",
    			host:     "a.b.wildcard.",
    			expected: a("a.b.wildcard.", []netip.Addr{netip.MustParseAddr("11.11.11.11")}),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_test_only.txt

    # Named explicitly, test-only packages should be reported as
    # unbuildable/uninstallable, even if there is a wildcard also matching.
    ! go build m/testonly m/testonly...
    stderr 'no non-test Go files in'
    ! go install ./testonly
    stderr 'no non-test Go files in'
    
    # Named through a wildcard, the test-only packages should be silently ignored.
    go build m/testonly...
    go install ./testonly...
    
    -- go.mod --
    module m
    
    go 1.16
    -- testonly/t_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 500 bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/xds/testdata/nds-se.yaml

      endpoints:
        - address: 1.2.3.4
          labels:
            security.istio.io/tlsMode: istio
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-none-wildcard
      namespace: ns2
    spec:
      hosts:
        - "*.random-4.host.example"
      # expect no address to be auto allocated
      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: NONE
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 08 09:17:55 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. pkg/xds/server.go

    	// For Delta Xds, all resources of the TypeUrl that a client has subscribed to.
    	ResourceNames []string
    
    	// Wildcard indicates the subscription is a wildcard subscription. This only applies to types that
    	// allow both wildcard and non-wildcard subscriptions.
    	Wildcard bool
    
    	// NonceSent is the nonce sent in the last sent response. If it is equal with NonceAcked, the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. 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)
  7. releasenotes/notes/33387.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 33387
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 05 06:21:43 UTC 2021
    - 210 bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/ComponentTypeModelRuleExtractorTest.groovy

            "wildcardType"      | "Type '?' cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.)."                               | "wildcard type parameter"
            "extendsType"       | "Type '? extends ${ComponentSpec.name}' cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.)." | "extends type parameter"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ParameterizedTypeWrapper.java

                    if (!(typeArgument instanceof WildcardWrapper)) {
                        return false;
                    }
                    WildcardWrapper wildcard = (WildcardWrapper) typeArgument;
                    if (wildcard.getLowerBound() != null || !wildcard.getUpperBound().getRawClass().equals(Object.class)) {
                        return false;
                    }
                }
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 7.5K bytes
    - Viewed (0)
Back to top