Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for relativeTo (0.34 sec)

  1. src/debug/elf/elf.go

    	R_RISCV_CALL_PLT      R_RISCV = 19 /* PC-relative call (PLT) */
    	R_RISCV_GOT_HI20      R_RISCV = 20 /* PC-relative GOT reference */
    	R_RISCV_TLS_GOT_HI20  R_RISCV = 21 /* PC-relative TLS IE GOT offset */
    	R_RISCV_TLS_GD_HI20   R_RISCV = 22 /* PC-relative TLS GD reference */
    	R_RISCV_PCREL_HI20    R_RISCV = 23 /* PC-relative reference */
    	R_RISCV_PCREL_LO12_I  R_RISCV = 24 /* PC-relative reference */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    		pod2: newPodMemoryStats(pod2, resource.MustParse("300Mi")), // 300 relative to request
    		pod3: newPodMemoryStats(pod3, resource.MustParse("800Mi")), // 700 relative to request
    		pod4: newPodMemoryStats(pod4, resource.MustParse("300Mi")), // 200 relative to request
    		pod5: newPodMemoryStats(pod5, resource.MustParse("800Mi")), // -200 relative to request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    	op_BPRP    uint32 = 0xC500 // FORMAT_MII        BRANCH PREDICTION RELATIVE PRELOAD
    	op_BRAS    uint32 = 0xA705 // FORMAT_RI2        BRANCH RELATIVE AND SAVE
    	op_BRASL   uint32 = 0xC005 // FORMAT_RIL2       BRANCH RELATIVE AND SAVE LONG
    	op_BRC     uint32 = 0xA704 // FORMAT_RI3        BRANCH RELATIVE ON CONDITION
    	op_BRCL    uint32 = 0xC004 // FORMAT_RIL3       BRANCH RELATIVE ON CONDITION LONG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/webcomponents.min.js

    O=parseInt(d,10);O!=p[this._scheme]&&(this._port=O+""),d=""}if(a)break e;l="relative path start";continue}"\t"==y||"\n"==y||"\r"==y?c("Invalid code point in port: "+y):n.call(this)}break;case"relative path start":if("\\"==y&&c("'\\' not allowed in path."),l="relative path","/"!=y&&"\\"!=y)continue;break;case"relative path":if(f!=y&&"/"!=y&&"\\"!=y&&(a||"?"!=y&&"#"!=y))"\t"!=y&&"\n"!=y&&"\r"!=y&&(d+=o(y));else{"\\"==y&&c("\\ not allowed in relative path.");var L;(L=h[d.toLowerCase()])&&(d=L),".."==d?(this._pat...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * as a file or directory. The second parameter is a relative path from
     * the <code>parent SmbFile</code>. See the description above for examples
     * of using the second <code>name</code> parameter.
     *
     * @param   context A base <code>SmbFile</code>
     * @param   name A path string relative to the <code>parent</code> paremeter
     * @throws  MalformedURLException
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    							if target.IsAMD64() {
    								// AMD64 dynamic relocations are relative to the end of the relocation.
    								o += int64(siz)
    							}
    						} else {
    							if rst != sym.SHOSTOBJ {
    								o += int64(uint64(ldr.SymValue(rs)) - ldr.SymSect(rs).Vaddr)
    							}
    							o -= int64(off) // relative to section offset, not symbol
    						}
    					} else {
    						o += int64(siz)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <name>modules</name>
              <version>4.0.0+</version>
              <description>The modules (sometimes called subprojects) to build as a part of this
                project. Each module listed is a relative path to the directory containing the module.
                To be consistent with the way default urls are calculated from parent, it is recommended
                to have module names match artifact ids.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    	return p
    }
    
    // loadImport scans the directory named by path, which must be an import path,
    // but possibly a local import path (an absolute file system path or one beginning
    // with ./ or ../). A local relative path is interpreted relative to srcDir.
    // It returns a *Package describing the package found in that directory.
    // loadImport does not set tool flags and should only be used by
    // this package, as part of a bigger load operation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    			if ctxt.Arch.Family == sys.AMD64 || p.As == obj.AJMP || p.As == obj.ACALL {
    				// PC-relative addressing is relative to the end of the instruction,
    				// but the relocations applied by the linker are relative to the end
    				// of the relocation. Because immediate instruction
    				// arguments can follow the PC-relative memory reference in the
    				// instruction encoding, the two may not coincide. In this case,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // as "unicode/utf8") or a package found in one of the work spaces (For more
    // details see: 'go help gopath').
    //
    // # Relative import paths
    //
    // An import path beginning with ./ or ../ is called a relative path.
    // The toolchain supports relative import paths as a shortcut in two ways.
    //
    // First, a relative path can be used as a shorthand on the command line.
    // If you are working in the directory containing the code imported as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top