Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 461 for wildCards (0.15 sec)

  1. releasenotes/notes/optimize-most-specific-host-match.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 182 bytes
    - Viewed (0)
  2. 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)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            runTask('idea', """
    apply plugin: 'idea'
    
    idea.project.wildcards = ['1'] as Set
    assert idea.project.wildcards == ['1'] as Set
    
    idea {
        project.wildcards += '2'
        assert project.wildcards == ['1', '2'] as Set
    }
    
    idea.project {
        wildcards += '3'
        assert wildcards == ['1', '2', '3'] as Set
    }
    
    """)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/testdata/script/list_wildcard_skip_nonmatching.txt

    # Test that wildcards don't look in useless directories.
    
    # First make sure that badpkg fails the list of '...'.
    ! go list ./...
    stderr badpkg
    
    # Check that the list of './goodpkg...' succeeds. That implies badpkg was skipped.
    go list ./goodpkg...
    
    -- go.mod --
    module m
    
    go 1.16
    -- goodpkg/x.go --
    package goodpkg
    -- badpkg/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 344 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/go/doc/comment/testdata/text8.txt

    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: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/FixedPatternStep.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file.pattern;
    
    /**
     * A pattern step for a fixed pattern segment that does not contain any wildcards.
     */
    public class FixedPatternStep implements PatternStep {
        private final String value;
        private final boolean caseSensitive;
    
        public FixedPatternStep(String value, boolean caseSensitive) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top