Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for wildcards (0.12 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/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)
  3. 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)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			queueingHintMap: QueueingHintMapPerProfile{
    				"": {
    					framework.ClusterEvent{Resource: framework.WildCard, ActionType: framework.Add}: {
    						{
    							PluginName:     "fooPlugin1",
    							QueueingHintFn: queueHintReturnQueue,
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "If event is a wildcard one, queueing hint function for all kinds of events is executed",
    			podInfo: &framework.QueuedPodInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			expectedClusters:     []string{"BlackHoleCluster", "InboundPassthroughCluster", "PassthroughCluster", "outbound|8080||test.com"},
    		},
    		{
    			name:     "destination rule with wildcard matching hosts",
    			services: []*model.Service{testService1},
    			configs: []config.Config{{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.DestinationRule,
    					Name:             "test-desinationrule",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top