Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for Adjustment (0.17 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. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    
    [[sec:merging_with_eclipse_files]]
    === Merging
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/riscv64.s

    	NEG	X5, X6					// 33035040
    	NEGW	X5					// bb025040
    	NEGW	X5, X6					// 3b035040
    
    	// This jumps to the second instruction in the function (the
    	// first instruction is an invisible stack pointer adjustment).
    	JMP	start					// JMP	2
    
    	JMP	2(PC)					// 6f008000
    	JMP	(X5)					// 67800200
    	JMP	4(X5)					// 67804200
    
    	// CALL and JMP to symbol are encoded as JAL (using LR or ZERO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_arm.s

    	RET
    
    TEXT ·publicationBarrier(SB),NOSPLIT,$0
    	MOVB	·goarm(SB), R11
    	CMP	$7, R11
    	BLT	2(PC)
    	JMP	·armPublicationBarrier(SB)
    	JMP	kernelPublicationBarrier<>(SB) // extra layer so this function is leaf and no SP adjustment on GOARM=7
    
    TEXT runtime·osyield(SB),NOSPLIT,$0
    	MOVW	$SYS_sched_yield, R7
    	SWI	$0
    	RET
    
    TEXT runtime·sched_getaffinity(SB),NOSPLIT,$0
    	MOVW	pid+0(FP), R0
    	MOVW	len+4(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. src/runtime/stack.go

    	}
    	if stackDebug >= 1 {
    		print("copystack gp=", gp, " [", hex(old.lo), " ", hex(old.hi-used), " ", hex(old.hi), "]", " -> [", hex(new.lo), " ", hex(new.hi-used), " ", hex(new.hi), "]/", newsize, "\n")
    	}
    
    	// Compute adjustment.
    	var adjinfo adjustinfo
    	adjinfo.old = old
    	adjinfo.delta = new.hi - old.hi
    
    	// Adjust sudogs, synchronizing with channel ops if necessary.
    	ncopy := used
    	if !gp.activeStackChans {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    // call program counters. Iterating over the returned slice of PCs
    // directly is discouraged, as is using [FuncForPC] on any of the
    // returned PCs, since these cannot account for inlining or return
    // program counter adjustment.
    func Callers(skip int, pc []uintptr) int {
    	// runtime.callers uses pc.array==nil as a signal
    	// to print a stack trace. Pick off 0-length pc here
    	// so that we don't let a nil pc slice get to it.
    	if len(pc) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    				switch p & 0xFFF {
    				case PrefixPN, PrefixPT:
    					inst.Prefix[i] &= 0xF0FF // cut interpretation bits, producing original segment prefix
    				}
    			}
    		}
    	}
    
    	// XACQUIRE/XRELEASE adjustment.
    	if inst.Op == MOV {
    		// MOV into memory is a candidate for turning REP into XRELEASE.
    		// However, if the REP is followed by a REPN, that REPN blocks the
    		// conversion.
    		haveREPN := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

              delta = peerInitialWindowSize - previousPeerSettings.initialWindowSize.toLong()
              streamsToNotify =
                when {
                  delta == 0L || streams.isEmpty() -> null // No adjustment is necessary.
                  else -> streams.values.toTypedArray()
                }
    
              peerSettings = newPeerSettings
    
              settingsListenerQueue.execute("$connectionName onSettings") {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. src/runtime/stack_test.go

    	var f func(n int)
    	f = func(n int) {
    		if n == 0 {
    			cb()
    			return
    		}
    		f(n - 1)
    	}
    	for i := 0; i < 1<<10; i++ {
    		f(i)
    	}
    }
    
    // TestDeferPtrs tests the adjustment of Defer's argument pointers (p aka &y)
    // during a stack copy.
    func set(p *int, x int) {
    	*p = x
    }
    func TestDeferPtrs(t *testing.T) {
    	var y int
    
    	defer func() {
    		if y != 42 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. src/runtime/chan_test.go

    		testenv.SkipFlaky(t, 49382)
    	}
    	if runtime.GOOS == "openbsd" {
    		testenv.SkipFlaky(t, 51482)
    	}
    
    	// The goal of this test is to trigger a "racy sudog adjustment"
    	// throw. Basically, there's a window between when a goroutine
    	// becomes available for preemption for stack scanning (and thus,
    	// stack shrinking) but before the goroutine has fully parked on a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
Back to top