Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _isRelative (0.2 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. 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