Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for wildcards (0.33 sec)

  1. src/net/http/server.go

    //
    // Normally a wildcard matches only a single path segment,
    // ending at the next literal slash (not %2F) in the request URL.
    // But if the "..." is present, then the wildcard matches the remainder of the URL path, including slashes.
    // (Therefore it is invalid for a "..." wildcard to appear anywhere but at the end of a pattern.)
    // The match for a wildcard can be obtained by calling [Request.PathValue] with the wildcard's name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/go/internal/load/pkg.go

    	// cmdlinePkg is for a package mentioned on the command line.
    	cmdlinePkg
    
    	// cmdlinePkgLiteral is for a package mentioned on the command line
    	// without using any wildcards or meta-patterns.
    	cmdlinePkgLiteral
    )
    
    // LoadPackage does Load import, but without a parent package load contezt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    		}}, valid: true},
    		{name: "wildcard dash", routes: []*networking.RouteDestination{{
    			Destination: &networking.Destination{Host: "*-foo.baz"},
    		}}, valid: true},
    		{name: "wildcard prefix", routes: []*networking.RouteDestination{{
    			Destination: &networking.Destination{Host: "*foo.baz"},
    		}}, valid: true},
    		{name: "wildcard", routes: []*networking.RouteDestination{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    curv.dev
    
    // Customer OCI - Oracle Dyn https://cloud.oracle.com/home https://dyn.com/dns/
    // Submitted by Gregory Drake <******@****.***>
    // Note: This is intended to also include customer-oci.com due to wildcards implicitly including the current label
    *.customer-oci.com
    *.oci.customer-oci.com
    *.ocp.customer-oci.com
    *.ocs.customer-oci.com
    
    // cyon GmbH : https://www.cyon.ch/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    			port:     ports.HTTPLocalHost,
    			code:     http.StatusServiceUnavailable,
    		},
    
    		// Wildcard bind
    		{
    			name:           "wildcard IP without sidecar",
    			disableSidecar: true,
    			port:           ports.HTTP,
    			code:           http.StatusOK,
    		},
    		{
    			name:     "wildcard IP with wildcard sidecar",
    			endpoint: "0.0.0.0",
    			port:     ports.HTTP,
    			code:     http.StatusOK,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_test.go

    						Proxy_100Continue:   true,
    					},
    					class:    istionetworking.ListenerClassGateway,
    					protocol: protocol.HTTPS,
    				},
    			},
    		},
    		{
    			name: "Wildcard hosts in TLS filterChain are not duplicates",
    			node: &pilot_model.Proxy{Metadata: &pilot_model.NodeMetadata{}},
    			server: &networking.Server{
    				Port: &networking.Port{
    					Protocol: "HTTPS",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    				}
    			} else if appliesToMesh && virtualHost == "*" {
    				errs = AppendValidation(errs, fmt.Errorf("wildcard host * is not allowed for virtual services bound to the mesh gateway"))
    				allHostsValid = false
    			}
    		}
    
    		// Check for duplicate hosts
    		// Duplicates include literal duplicates as well as wildcard duplicates
    		// E.g., *.foo.com, and *.com are duplicates in the same virtual service
    		if allHostsValid {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation_test.go

    					APIGroups:   []string{"a"},
    					APIVersions: []string{"a"},
    					Resources:   []string{"a"},
    				},
    			}},
    		},
    		}, true),
    		expectedError: `Unsupported value: "PATCH"`,
    	}, {
    		name: "wildcard operation cannot be mixed with other strings",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			Rules: []admissionregistration.RuleWithOperations{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
Back to top