Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 546 for Forked (0.49 sec)

  1. src/os/os_test.go

    	testenv.MustHaveExec(t)
    	t.Parallel()
    
    	cmd := testenv.Command(t, Args[0], "-test.run=^TestGetppid$")
    	cmd.Env = append(Environ(), "GO_WANT_HELPER_PROCESS=1")
    
    	// verify that Getppid() from the forked process reports our process id
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    
    	childPpid := string(output)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. hack/testdata/sorted-pods/sorted-pod1.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: sorted-pod1
      creationTimestamp: "2018-08-30T14:10:58Z"
      labels:
        name: sorted-pod3-label
    spec:
      containers:
      - name: kubernetes-pause2
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "64Mi"
            cpu: "250m"
          limits:
            memory: "128Mi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 355 bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	// because of the additional overheads of using scavenged memory.
    	worked *= 1 + scavengeCostRatio
    
    	// sleepTime is the amount of time we're going to sleep, based on the amount
    	// of time we worked, and the sleepRatio.
    	sleepTime := int64(worked / s.sleepRatio)
    
    	var slept int64
    	if s.sleepStub == nil {
    		// Set the timer.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    			if _, err := os.Stat(file); err != nil {
    				continue // no profile
    			}
    
    			// Packages already visited. The value should replace
    			// the key, as it may be a forked copy of the original
    			// Package.
    			visited := make(map[*Package]*Package)
    			var split func(p *Package) *Package
    			split = func(p *Package) *Package {
    				if p1 := visited[p]; p1 != nil {
    					return p1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

            run {
                buildDir(buildNum).file("stop") << "stop"
            }
        }
    
        protected static deleteFile(File file) {
            // Repeat the attempt to delete in case it was temporarily locked
            poll(10) {
                if (file.exists()) {
                    file.delete()
                }
                assert !file.exists()
            }
        }
    
        void waitForBuildToWait(buildNum = 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top