Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for wildcards (0.17 sec)

  1. releasenotes/notes/45415-overlapping-wildcards.yaml

    issue:
      - 45415
    
    releaseNotes:
      - |
        **Fixed** a bug where overlapping wildcard hosts in a VirtualService would produce incorrect routing configuration when wildcard services were selected (e.g. in ServiceEntries).
    
    upgradeNotes:
      - title: Overlapping Wildcard Conflicts
        content: |
          This fix changes the behavior of overlapping wildcard hosts in VirtualService. Previously, the oldest VirtualService would take precedence
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 09 14:22:50 UTC 2023
    - 786 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/traffic-annotations-wildcards.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_address.go

    	// 6 is the magical number for inbound: 15006, 127.0.0.6, ::6
    	InboundPassthroughBindIpv4 = "127.0.0.6"
    	InboundPassthroughBindIpv6 = "::6"
    )
    
    var (
    	// maintain 3 maps to return wildCards, localHosts and passthroughBindIPs according to IP mode of proxy
    	wildCards = map[model.IPMode][]string{
    		model.IPv4: {WildcardAddress},
    		model.IPv6: {WildcardIPv6Address},
    		model.Dual: {WildcardAddress, WildcardIPv6Address},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectTest.groovy

            def xml = toXmlReader
            def other = new Project(new XmlTransformer(), pathFactory)
            other.load(xml)
    
            then:
            project.wildcards == other.wildcards
            project.modulePaths == other.modulePaths
            project.jdk == other.jdk
        }
    
        private InputStream getToXmlReader() {
            ByteArrayOutputStream toXmlText = new ByteArrayOutputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaProjectIntegrationTest.groovy

    def hooks = []
    
    idea {
        project {
            ipr {
                beforeMerged {
                    assert it.wildcards.contains('!?*.fooBar')
                    it.wildcards << '!?*.fooBarTwo'
                    hooks << 'before'
                }
                whenMerged {
                    assert it.wildcards.contains('!?*.fooBarTwo')
                    hooks << 'when'
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoViolationRule.java

         *
         * @param includes Inclusions
         */
        void setIncludes(List<String> includes);
    
        /**
         * List of elements that should be included in check. Names can use wildcards (* and ?).
         * If left empty, all elements will be included. Defaults to [*].
         */
        @Input
        List<String> getIncludes();
    
        /**
         * Sets list of elements that should be excluded from check.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

        check(rule.startsWith(WILDCARD_CHAR)) {
          """Wildcard Assertion Failure: '$rule'
    A wildcard rule was added with a wildcard that is not in leftmost position! We'll need to change the ${PublicSuffixDatabase::class.java.name} to handle this."""
        }
        check(rule.indexOf(WILDCARD_CHAR, 1) == -1) {
          """Wildcard Assertion Failure: '$rule'
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/image/format.go

    // RegisterFormat registers an image format for use by [Decode].
    // Name is the name of the format, like "jpeg" or "png".
    // Magic is the magic prefix that identifies the format's encoding. The magic
    // string can contain "?" wildcards that each match any one byte.
    // [Decode] is the function that decodes the encoded image.
    // [DecodeConfig] is the function that decodes just its configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/net/http/routing_tree.go

    	// those with a multi wildcard.
    	// We skip this step if the segment is a trailing slash, because single wildcards
    	// don't match trailing slashes.
    	if seg != "/" {
    		if n, m := n.emptyChild.matchPath(rest, append(matches, seg)); n != nil {
    			return n, m
    		}
    	}
    	// Lastly, match the pattern (there can be at most one) that has a multi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/filter/filter_test.go

    		},
    		{
    			name: "glob deployments with labels and annotations",
    			config: `
    include:
      - ns1,ns2/d1,d2/p1,p2,p3,p4/l1=v1,l2=v2/k2=v2`,
    			want:    p1,
    			wantErr: "",
    		},
    		{
    			name: "label wildcards",
    			config: `
    include:
      - n*/*/*/l1=v1,l2=v2*`,
    			want:    joinSlices(p1, p2, p3),
    			wantErr: "",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top