Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Adjustment (0.2 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              <name>url</name>
              <version>3.0.0+</version>
              <description>
                <![CDATA[
                The URL to the project's homepage.
                <p><b>Default value is</b>: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if
                project's {@code child.project.url.inherit.append.path="false"}</p>
                ]]>
              </description>
              <type>String</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	// disallowVendor will reject direct use of paths containing /vendor/.
    	ResolveImport = 1 << iota
    
    	// ResolveModule is for download (part of "go get") and indicates
    	// that the module adjustment should be done, but not vendor adjustment.
    	ResolveModule
    
    	// GetTestDeps is for download (part of "go get") and indicates
    	// that test dependencies should be fetched too.
    	GetTestDeps
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    			zRIL(_b, op_STHRL, uint32(p.From.Reg), 0, asm)
    		case AMOVB, AMOVBZ: // The zero extension doesn't affect store instructions
    			zRIL(_b, op_LARL, regtmp(p), 0, asm)
    			adj := uint32(0) // adjustment needed for odd addresses
    			if i2&1 != 0 {
    				i2 -= 1
    				adj = 1
    			}
    			zRX(op_STC, uint32(p.From.Reg), 0, regtmp(p), adj, asm)
    		case AFMOVD:
    			zRIL(_b, op_LARL, regtmp(p), 0, asm)
    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/cmd/internal/obj/x86/asm6.go

    			} else if ctxt.Arch.Family == sys.I386 {
    				// On 386 PC-relative addressing (for non-call/jmp instructions)
    				// assumes that the previous instruction loaded the PC of the end
    				// of that instruction into CX, so the adjustment is relative to
    				// that.
    				r.Add += int64(r.Off) - p.Pc + int64(r.Siz)
    			}
    		}
    		if r.Type == objabi.R_GOTPCREL && ctxt.Arch.Family == sys.I386 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	// to writeBlocks.
    	//
    	// NB: ideally we would do a separate writeBlocks call for each
    	// section, but this would run the risk of undoing any file offset
    	// adjustments made during layout.
    	n := 0
    	for i := range dwarfp {
    		n += len(dwarfp[i].syms)
    	}
    	syms := make([]loader.Sym, 0, n)
    	for i := range dwarfp {
    		syms = append(syms, dwarfp[i].syms...)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

    ```
    
    * Fix fetching pids running in a cgroup, which caused problems with OOM score adjustments & setting the /system cgroup ("misc" in the summary API). ([#36614](https://github.com/kubernetes/kubernetes/pull/36614), [@timstclair](https://github.com/timstclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * Fix fetching pids running in a cgroup, which caused problems with OOM score adjustments & setting the /system cgroup ("misc" in the summary API). ([#36551](https://github.com/kubernetes/kubernetes/pull/36551), [@timstclair](https://github.com/timstclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // These flags are mainly for tools that understand the module graph.
    // Users should prefer 'go get path@version' or 'go get path@none',
    // which make other go.mod adjustments as needed to satisfy
    // constraints imposed by other modules.
    //
    // The -go=version flag sets the expected Go language version.
    // This flag is mainly for tools that understand Go version dependencies.
    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