Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 461 for wildCards (0.3 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

                DosFileFilter dff = (DosFileFilter)ff;
                if (dff.wildcard != null)
                    wildcard = dff.wildcard;
                searchAttributes = dff.attributes;
            }
    
            try {
                int hostlen = url.getHost().length();
                if (hostlen == 0 || getType() == TYPE_WORKGROUP) {
                    doNetServerEnum(list, files, wildcard, searchAttributes, fnf, ff);
                } else if (share == null) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			}
    		}
    
    		// Next check the hostnames are a match. This is a bi-directional wildcard match. Only one route
    		// hostname must match for it to be allowed (but the others will be filtered at runtime)
    		// If either is empty its treated as a wildcard which always matches
    
    		if len(hostnames) == 0 {
    			hostnames = []k8s.Hostname{"*"}
    		}
    		if len(parent.Hostnames) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-66504`](https://youtrack.jetbrains.com/issue/KT-66504) K2: plusAssign operator call is resolved differently than function call
    - [`KT-48515`](https://youtrack.jetbrains.com/issue/KT-48515) JSpecify: If a class has a `@Nullable` type-parameter bound, Kotlin should still treat unbounded wildcards like platform types
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    			for _, m := range matches {
    				roots = append(roots, m.Pkgs...)
    			}
    			return roots
    		},
    	})
    
    	// One last pass to finalize wildcards.
    	updateMatches(ld.requirements, ld)
    
    	// List errors in matching patterns (such as directory permission
    	// errors for wildcard patterns).
    	if !ld.SilencePackageErrors {
    		for _, match := range matches {
    			for _, err := range match.Errs {
    				ld.error(err)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // 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: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard-tproxy.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/gateway-duplicate-certificate.yaml

      name: 02-test-04-wildcard-cert
      namespace: istio-system
    type: Opaque
    ---
    apiVersion: v1
    data:
      cert: aHVzaCBodXNoIGh1c2gK
      key: c2VjcmV0IHNlY3JldAo=
    kind: Secret
    metadata:
      name: 01-test-05-wildcard-cert
      namespace: istio-system
    type: Opaque
    ---
    apiVersion: v1
    data:
      cert: aHVzaCBodXNoIGh1c2gK
      key: c2VjcmV0IHNlY3JldAo=
    kind: Secret
    metadata:
      name: 02-test-05-wildcard-cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/DosFileFilter.java

         * 
         * @param wildcard
         * @param attributes
         */
        public DosFileFilter ( String wildcard, int attributes ) {
            this.wildcard = wildcard;
            this.attributes = attributes;
        }
    
    
        /**
         * This returns true if the file's attributes contain any of the attributes
         * specified for this filter. The wildcard has no influence on this
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

    apiVersion: gateway.networking.k8s.io/v1
    kind: HTTPRoute
    metadata:
      name: attaches-to-wildcard-example-com-with-hostname-intersection
      namespace: gateway-conformance-infra
    spec:
      parentRefs:
        - name: isolation
          namespace: gateway-conformance-infra
          sectionName: wildcard-example-com
      hostnames:
        - "bar.com" # doesn't match wildcard-example-com listener
        - "*.example.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top