Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,759 for Forked (0.12 sec)

  1. src/cmd/go/testdata/script/mod_get_moved.txt

    env GO111MODULE=on
    [short] skip
    
    # A 'go get' that worked at a previous version should continue to work at that version,
    # even if the package was subsequently moved into a submodule.
    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheMarkingStrategyIntegrationTest.groovy

            "wrapper/dists" | "NONE"          | true      | "not marked"
            "wrapper/dists" | "CACHEDIR_TAG"  | false     | "not marked"
            "wrapper/dists" | "CACHEDIR_TAG"  | true      | "marked"
            // JDKs are not used by this test, so not marked if not created
            "jdks"          | "NONE"          | false     | "not marked"
            "jdks"          | "NONE"          | true      | "not marked"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core-api/src/main/java/org/gradle/process/ExecOperations.java

         *
         * @param action Action to configure the ExecSpec
         * @return {@link ExecResult} that can be used to check if the execution worked
         */
        ExecResult exec(Action<? super ExecSpec> action);
    
        /**
         * Executes the specified external <code>java</code> process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	// gcMarkWorkerDedicatedMode indicates that the P of a mark
    	// worker is dedicated to running that mark worker. The mark
    	// worker should run without preemption.
    	gcMarkWorkerDedicatedMode
    
    	// gcMarkWorkerFractionalMode indicates that a P is currently
    	// running the "fractional" mark worker. The fractional worker
    	// is necessary when GOMAXPROCS*gcBackgroundUtilization is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/lock_sema.go

    					break
    				}
    				v = atomic.Loaduintptr(&l.key)
    				if v&locked == 0 {
    					continue Loop
    				}
    			}
    			if v&locked != 0 {
    				// Queued. Wait.
    				semasleep(-1)
    				i = 0
    			}
    		}
    	}
    }
    
    func unlock(l *mutex) {
    	unlockWithRank(l)
    }
    
    // We might not be holding a p in this code.
    //
    //go:nowritebarrier
    func unlock2(l *mutex) {
    	gp := getg()
    	var mp *m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. 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)
Back to top