Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,660 for pats (0.08 sec)

  1. src/compress/bzip2/testdata/pass-random2.bz2

    pass-random2...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 02:53:34 UTC 2016
    - 125 bytes
    - Viewed (0)
  2. src/internal/filepathlite/path.go

    func Base(path string) string {
    	if path == "" {
    		return "."
    	}
    	// Strip trailing slashes.
    	for len(path) > 0 && IsPathSeparator(path[len(path)-1]) {
    		path = path[0 : len(path)-1]
    	}
    	// Throw away volume name
    	path = path[len(VolumeName(path)):]
    	// Find the last element
    	i := len(path) - 1
    	for i >= 0 && !IsPathSeparator(path[i]) {
    		i--
    	}
    	if i >= 0 {
    		path = path[i+1:]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/validation/field/path.go

    	}
    	return c.path
    }
    
    // Path represents the path from some root to a particular field.
    type Path struct {
    	name   string // the name of this field or "" if this is an index
    	index  string // if name == "", this is a subscript (index or map key) of the previous element
    	parent *Path  // nil if this is the root element
    }
    
    // NewPath creates a root Path object.
    func NewPath(name string, moreNames ...string) *Path {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 11 08:23:53 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/allow-path-in.yaml

        matchLabels:
          app: httpbin
          version: v1
      rules:
        - to:
            - operation:
                paths: ["/exact", "/prefix/*", "*/suffix", "*", "/path/template/{*}", "/{**}/path/template"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 454 bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/path.go

    // symbol table. All control characters, space, '%' and '"', as well as
    // non-7-bit clean bytes turn into %xx. The period needs escaping only in the
    // last segment of the path, and it makes for happier users if we escape that as
    // little as possible.
    func PathToPrefix(s string) string {
    	slash := strings.LastIndex(s, "/")
    	// check for chars that need escaping
    	n := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/os/path.go

    // If there is an error, it will be of type [*PathError].
    func RemoveAll(path string) error {
    	return removeAll(path)
    }
    
    // endsWithDot reports whether the final component of path is ".".
    func endsWithDot(path string) bool {
    	if path == "." {
    		return true
    	}
    	if len(path) >= 2 && path[len(path)-1] == '.' && IsPathSeparator(path[len(path)-2]) {
    		return true
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/path/path.go

    // If the path is empty, Base returns ".".
    // If the path consists entirely of slashes, Base returns "/".
    func Base(path string) string {
    	if path == "" {
    		return "."
    	}
    	// Strip trailing slashes.
    	for len(path) > 0 && path[len(path)-1] == '/' {
    		path = path[0 : len(path)-1]
    	}
    	// Find the last element
    	if i := bytealg.LastIndexByteString(path, '/'); i >= 0 {
    		path = path[i+1:]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. hack/boilerplate/test/pass.go

    Jeff Grafton <******@****.***> 1500078406 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 03 01:32:50 UTC 2017
    - 584 bytes
    - Viewed (0)
  9. ci/official/utilities/code_check_changed_files.bats

    Austin Anderson <******@****.***> 1704849822 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authorization/path/path.go

    limitations under the License.
    */
    
    package path
    
    import (
    	"context"
    	"fmt"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    )
    
    // NewAuthorizer returns an authorizer which accepts a given set of paths.
    // Each path is either a fully matching path or it ends in * in case a prefix match is done. A leading / is optional.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 09 13:47:19 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top