Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 199 for wildcards (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. releasenotes/notes/42119.yaml

    issue:
      - https://github.com/istio/istio/issues/42094
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 22:23:04 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    It also allows the use of wildcards to specify the resources that should be encrypted.
    Use '*.<group>' to encrypt all resources within a group or '*.*' to encrypt all resources.
    '*.' can be used to encrypt all resource in the core group.  '*.*' will encrypt all
    resources, even custom resources that are added after API server start.
    Use of wildcards that overlap within the same resource list or across multiple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfiguration.java

     */
    public interface IvyConfiguration extends Named {
    
        /**
         * Add the name of a configuration that this configuration extends.
         * The extend value can use the following wildcards:
         * <ul>
         *     <li>* - all other configurations</li>
         *     <li>*(public) - all other public configurations</li>
         *     <li>*(private) - all other private configurations</li>
         * </ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top