Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 463 for wildcards (0.13 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

    John Howard <******@****.***> 1565919828 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 673 bytes
    - Viewed (0)
  3. 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)
  4. pkg/config/host/name.go

    	if hWildcard {
    		if oWildcard {
    			// both n and o are wildcards
    			if len(n) < len(o) {
    				return false
    			}
    			return strings.HasSuffix(string(n[1:]), string(o[1:]))
    		}
    		// only n is wildcard
    		return false
    	}
    
    	if oWildcard {
    		// only o is wildcard
    		return strings.HasSuffix(string(n), string(o[1:]))
    	}
    
    	// both are non-wildcards, so do normal string comparison
    	return n == o
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 16:25:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        }
    
        /**
         * A set of wildcard string to be included/excluded from the resources.
         */
        public Set<String> getWildcards() {
            return wildcards;
        }
    
        public void setWildcards(Set<String> wildcards) {
            this.wildcards = wildcards;
        }
    
        /**
         * Represent the jdk information of the project java sdk.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

            this.vcs = vcs;
        }
    
        /**
         * The wildcard resource patterns.
         * <p>
         * See the examples in the docs for {@link IdeaProject}.
         */
        public Set<String> getWildcards() {
            return wildcards;
        }
    
        public void setWildcards(Set<String> wildcards) {
            this.wildcards = wildcards;
        }
    
        /**
         * Output *.ipr
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. pkg/config/host/names.go

    	}
    
    	// we sort longest to shortest, alphabetically, with wildcards last
    	ai, aj := string(a[0]) == "*", string(b[0]) == "*"
    	if ai && !aj {
    		// h[i] is a wildcard, but h[j] isn't; therefore h[j] < h[i]
    		return false
    	} else if !ai && aj {
    		// h[j] is a wildcard, but h[i] isn't; therefore h[i] < h[j]
    		return true
    	}
    
    	// they're either both wildcards, or both not; in either case we sort them longest to shortest, alphabetically
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top