Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for isSlash (0.47 sec)

  1. src/syscall/exec_windows.go

    		if n <= uint32(len(buf)) {
    			return UTF16ToString(buf[:n]), nil
    		}
    	}
    }
    
    func isSlash(c uint8) bool {
    	return c == '\\' || c == '/'
    }
    
    func normalizeDir(dir string) (name string, err error) {
    	ndir, err := FullPath(dir)
    	if err != nil {
    		return "", err
    	}
    	if len(ndir) > 2 && isSlash(ndir[0]) && isSlash(ndir[1]) {
    		// dir cannot have \\server\share\path form
    		return "", EINVAL
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/fsys/fsys.go

    	if l := len(path); l >= 5 && isSlash(path[0]) && isSlash(path[1]) &&
    		!isSlash(path[2]) && path[2] != '.' {
    		// first, leading `\\` and next shouldn't be `\`. its server name.
    		for n := 3; n < l-1; n++ {
    			// second, next '\' shouldn't be repeated.
    			if isSlash(path[n]) {
    				n++
    				// third, following something characters. its share name.
    				if !isSlash(path[n]) {
    					if path[n] == '.' {
    						break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy.go

    	}
    	// Same as singleJoiningSlash, but uses EscapedPath to determine
    	// whether a slash should be added
    	apath := a.EscapedPath()
    	bpath := b.EscapedPath()
    
    	aslash := strings.HasSuffix(apath, "/")
    	bslash := strings.HasPrefix(bpath, "/")
    
    	switch {
    	case aslash && bslash:
    		return a.Path + b.Path[1:], apath + bpath[1:]
    	case !aslash && !bslash:
    		return a.Path + "/" + b.Path, apath + "/" + bpath
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    // See-also: https://github.com/golang/go/issues/44290
    func singleJoiningSlash(a, b string) string {
    	aslash := strings.HasSuffix(a, "/")
    	bslash := strings.HasPrefix(b, "/")
    	switch {
    	case aslash && bslash:
    		return a + b[1:]
    	case !aslash && !bslash:
    		return a + "/" + b
    	}
    	return a + b
    }
    
    func (h *UpgradeAwareHandler) DialForUpgrade(req *http.Request) (net.Conn, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    	if len(fieldSelector) == 0 {
    		return nil
    	}
    
    	terms := make([]string, 0, 1)
    	startIndex := 0
    	inSlash := false
    	for i, c := range fieldSelector {
    		switch {
    		case inSlash:
    			inSlash = false
    		case c == '\\':
    			inSlash = true
    		case c == ',':
    			terms = append(terms, fieldSelector[startIndex:i])
    			startIndex = i + 1
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

            expect:
            extendsString.wildcard
            superString.wildcard
            objects.wildcard
            anything.wildcard
    
            !extendsString.isClass()
            !superString.isClass()
            !objects.isClass()
            !anything.isClass()
    
            extendsString.rawClass == String
            superString.rawClass == Object
            objects.rawClass == Object
            anything.rawClass == Object
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
  7. src/cmd/doc/main.go

    	// work.
    	var period int
    	// slash+1: if there's no slash, the value is -1 and start is 0; otherwise
    	// start is the byte after the slash.
    	for start := slash + 1; start < len(arg); start = period + 1 {
    		period = strings.Index(arg[start:], ".")
    		symbol := ""
    		if period < 0 {
    			period = len(arg)
    		} else {
    			period += start
    			symbol = arg[period+1:]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                    artifactSelector.name == 'foo'
                    artifactSelector.type == 'jar'
                    artifactSelector.extension == 'jar'
                    artifactSelector.classifier == 'classy'
                    isLast()
                }
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/26996")
        def "BOMs are not published multiple times"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  9. src/mime/mediatype_test.go

    	{"foo/BAR", map[string]string{"space": "With space"}, `foo/bar; space="With space"`},
    	{"foo/BAR", map[string]string{"quote": `With "quote`}, `foo/bar; quote="With \"quote"`},
    	{"foo/BAR", map[string]string{"bslash": `With \backslash`}, `foo/bar; bslash="With \\backslash"`},
    	{"foo/BAR", map[string]string{"both": `With \backslash and "quote`}, `foo/bar; both="With \\backslash and \"quote"`},
    	{"foo/BAR", map[string]string{"": "empty attribute"}, ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  10. cmd/metacache-walk.go

    	// ReportNotFound will return errFileNotFound if all disks reports the BaseDir cannot be found.
    	ReportNotFound bool
    
    	// FilterPrefix will only return results with given prefix within folder.
    	// Should never contain a slash.
    	FilterPrefix string
    
    	// ForwardTo will forward to the given object path.
    	ForwardTo string
    
    	// Limit the number of returned objects if > 0.
    	Limit int
    
    	// DiskID contains the disk ID of the disk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top