Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 461 for wildCards (0.14 sec)

  1. pkg/config/analysis/local/istiod_analyze.go

    	Code string
    
    	// ResourceName is the name of the resource to suppress the message for. For
    	// K8s resources it has the same form as used by istioctl (e.g.
    	// "DestinationRule default.istio-system"). Note that globbing wildcards are
    	// supported (e.g. "DestinationRule *.istio-system").
    	ResourceName string
    }
    
    // ReaderSource is a tuple of a io.Reader and filepath.
    type ReaderSource struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation.go

    			}
    		}
    	}
    	return
    }
    
    // ValidateWildcardDomain checks that a domain is a valid FQDN, but also allows wildcard prefixes.
    func ValidateWildcardDomain(domain string) error {
    	if err := CheckDNS1123Preconditions(domain); err != nil {
    		return err
    	}
    	// We only allow wildcards in the first label; split off the first label (parts[0]) from the rest of the host (parts[1])
    	parts := strings.SplitN(domain, ".", 2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package flowcontrol
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. 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)
  5. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    				if netutils.ParseIPSloppy(altname) == nil {
    					allErrs = append(allErrs, field.Invalid(fldPath, altname, fmt.Sprintf("altname is not a valid IP address, DNS label or a DNS label with subdomain wildcards: %s; %s", strings.Join(errs, "; "), strings.Join(errs2, "; "))))
    				}
    			}
    		}
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta2
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_simulation_test.go

    						ListenerMatched:    "0.0.0.0_80",
    						RouteConfigMatched: "http.80",
    						VirtualHostMatched: "blackhole:80",
    					},
    				},
    			},
    		},
    		simulationTest{
    			name: "multiple wildcards with virtual service disambiguator",
    			config: createGateway("alpha", "", `
    hosts:
      - ns-1/*.example.com
    port:
      name: http
      number: 80
      protocol: HTTP`) +
    				createGateway("beta", "", `
    hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta3
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top