Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 434 for Forked (0.11 sec)

  1. src/runtime/time.go

    	return 0
    }
    
    // unlockAndRun unlocks and runs the timer t (which must be locked).
    // If t is in a timer set (t.ts != nil), the caller must also have locked the timer set,
    // and this call will temporarily unlock the timer set while running the timer function.
    // unlockAndRun returns with t unlocked and t.ts (re-)locked.
    //
    //go:systemstack
    func (t *timer) unlockAndRun(now int64) {
    	t.trace("unlockAndRun")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

         * Marks a selector for reuse,
         * indicating it could be used again for resolution
         *
         * @return {@code true} if that selector has been marked for reuse before, {@code false} otherwise
         */
        boolean markForReuse() {
            if (!resolved) {
                // Selector was marked for deferred selection - let's not trigger selection now
                return true;
            }
            this.reusable = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. src/runtime/mgcsweep.go

    //   can free a whole span if none of the objects are marked, but that
    //   isn't its goal. This can be driven either synchronously by
    //   mcentral.cacheSpan for mcentral spans, or asynchronously by
    //   sweepone, which looks at all the mcentral lists.
    //
    // * The span reclaimer looks for spans that contain no marked objects
    //   and frees whole spans. This is a separate algorithm because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    . Next time you update the save lock state, Gradle will automatically clean up all stale lock state from it.
    
    Gradle needs to resolve a configuration, no longer marked as locked, to detect that associated lock state can be dropped.
    
    [[ignoring_dependencies]]
    == Ignoring specific dependencies from the lock state
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. internal/dsync/drwmutex.go

    			if c == nil {
    				log("dsync: nil locker\n")
    				ch <- g
    				return
    			}
    
    			var locked bool
    			var err error
    			if isReadLock {
    				if locked, err = c.RLock(netLockCtx, args); err != nil {
    					log("dsync: Unable to call RLock failed with %s for %#v at %s\n", err, args, c)
    				}
    			} else {
    				if locked, err = c.Lock(netLockCtx, args); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

                    constraint("org:foo:$constraintVersion", "org:foo:1.0") {
                        byConstraint("dependency was locked to version '1.0'$extraReason")
                    }
                }
            }
    
            where:
            unique << [true, false]
        }
    
        def 'does not write-locks for not locked configuration'() {
            mavenRepo.module('org', 'foo', '1.0').publish()
    
            buildFile << """
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/runtime/HACKING.md

    Some common patterns that mix atomic and non-atomic access are:
    
    * Read-mostly variables where updates are protected by a lock. Within
      the locked region, reads do not need to be atomic, but the write
      does. Outside the locked region, reads need to be atomic.
    
    * Reads that only happen during STW, where no writes can happen during
      STW, do not need to be atomic.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            if (isSameOrOlder("4.11")) {
                return javaVersion >= JavaVersion.VERSION_1_7 && javaVersion <= JavaVersion.VERSION_1_10
            }
    
            // 5.4 officially added support for JDK 12, but it worked before then.
            if (isSameOrOlder("5.7")) {
                return javaVersion >= JavaVersion.VERSION_1_8 && javaVersion <= JavaVersion.VERSION_12
            }
    
            if (isSameOrOlder("6.0")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/runtime/preempt.go

    	if up == abi.UnsafePointUnsafe {
    		// Unsafe-point marked by compiler. This includes
    		// atomic sequences (e.g., write barrier) and nosplit
    		// functions (except at calls).
    		return false, 0
    	}
    	if fd := funcdata(f, abi.FUNCDATA_LocalsPointerMaps); fd == nil || f.flag&abi.FuncFlagAsm != 0 {
    		// This is assembly code. Don't assume it's well-formed.
    		// TODO: Empirically we still need the fd == nil check. Why?
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. docs/en/docs/contributing.md

        <div class="termy">
    
        ```console
        $ source ./env/Scripts/activate
        ```
    
        </div>
    
    To check it worked, use:
    
    === "Linux, macOS, Windows Bash"
    
        <div class="termy">
    
        ```console
        $ which pip
    
        some/directory/fastapi/env/bin/pip
        ```
    
        </div>
    
    === "Windows PowerShell"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top