Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 683 for Forked (0.19 sec)

  1. 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)
  2. src/runtime/pinner_test.go

    	if !runtime.IsPinned(unsafe.Pointer(&ifc)) {
    		t.Fatal("not marked as pinned")
    	}
    	if runtime.IsPinned(unsafe.Pointer(o)) {
    		t.Fatal("marked as pinned")
    	}
    	pinner.Unpin()
    	pinner.Pin(ifc)
    	if !runtime.IsPinned(unsafe.Pointer(o)) {
    		t.Fatal("not marked as pinned")
    	}
    	if runtime.IsPinned(unsafe.Pointer(&ifc)) {
    		t.Fatal("marked as pinned")
    	}
    	pinner.Unpin()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:36:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                        forced()
                        byConstraint("belongs to platform org:platform:2.7.9")
                    }
                    module("org:databind:2.7.9") {
                        forced()
                        byConstraint("belongs to platform org:platform:2.7.9")
                        module('org:annotations:2.7.9') {
                            forced()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. src/runtime/proc_test.go

    func TestYieldProgress(t *testing.T) {
    	testYieldProgress(false)
    }
    
    func TestYieldLockedProgress(t *testing.T) {
    	testYieldProgress(true)
    }
    
    func testYieldProgress(locked bool) {
    	c := make(chan bool)
    	cack := make(chan bool)
    	go func() {
    		if locked {
    			runtime.LockOSThread()
    		}
    		for {
    			select {
    			case <-c:
    				cack <- true
    				return
    			default:
    				runtime.Gosched()
    			}
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                        forced()
                    }
                    edge("org:databind:{strictly 2.7.9}", "org:databind:2.7.9") {
                        byConstraint('belongs to platform org:platform:2.7.9')
                        forced()
                        module('org:annotations:2.7.9') {
                            byConstraint('belongs to platform org:platform:2.7.9')
                            forced()
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

            then:
            sorted.size() == 5
    
            sorted[0].name == 'a:x:2.0'
            sorted[0].description == 'by conflict resolution'
    
            sorted[1].name == 'a:x:2.0'
            sorted[1].description == null
    
            sorted[2].name == 'a:x:1.0 -> 2.0'
            !sorted[2].description
    
            sorted[3].name == 'b:a:5.0'
            sorted[3].description == 'forced'
    
            sorted[4].name == 'b:a:5.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/DefaultResourceLockCoordinationServiceTest.groovy

                }
            }
    
            when:
            beforeState.eachWithIndex { boolean locked, int i -> lock[i].lockedState = locked }
            coordinationService.withStateLock(outerAction)
    
            then:
            afterState.eachWithIndex { boolean locked, int i -> assert lock[i].lockedState == locked }
    
            where:
            beforeState                  | afterState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 17:16:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top