Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _isRelative (0.19 sec)

  1. src/internal/trace/traceviewer/static/webcomponents.min.js

    hostname(e){!this._isInvalid&&this._isRelative&&a.call(this,e,"hostname")},get port(){return this._port},set port(e){!this._isInvalid&&this._isRelative&&a.call(this,e,"port")},get pathname(){return this._isInvalid?"":this._isRelative?"/"+this._path.join("/"):this._schemeData},set pathname(e){!this._isInvalid&&this._isRelative&&(this._path=[],a.call(this,e,"relative path start"))},get search(){return this._isInvalid||!this._query||"?"==this._query?"":this._query},set search(e){!this._isInvalid&&this._isRe...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            when:
            FileReference reference = classpath.fileReference(path)
    
            then:
            reference.path == path
            reference.relativeToPathVariable == isRelative
    
            where:
            path                 | isRelative
            '/simple/path'       | false
            'USER_LIB_PATH/file' | true
        }
    
        def 'create file reference from file'() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport.go

    	//      necessary URL prefix (i.e. /api/v1/namespace/foo/service/bar/proxy/).
    	isDifferentHost := url.Host != "" && url.Host != sourceURL.Host && url.Host != sourceRequestHost
    	isRelative := !strings.HasPrefix(url.Path, "/")
    	if isDifferentHost || isRelative {
    		return url.String()
    	}
    
    	// Do not rewrite scheme and host if the Transport has empty scheme and host
    	// when targetURL already contains the sourceRequestHost
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. src/os/os_windows_test.go

    	}
    	tp.PrivilegeCount = 1
    	tp.Privileges[0].Attributes = windows.SE_PRIVILEGE_ENABLED
    	return windows.AdjustTokenPrivileges(t, false, &tp, 0, nil, nil)
    }
    
    func createSymbolicLink(link string, target *reparseData, isrelative bool) error {
    	var buf *windows.SymbolicLinkReparseBuffer
    	buflen := uint16(unsafe.Offsetof(buf.PathBuffer)) + target.pathBuffeLen() // see ReparseDataLength documentation
    	byteblob := make([]byte, buflen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top