Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 683 for Forked (0.1 sec)

  1. src/internal/fuzz/worker.go

    	workerSharedMemSize = 100 << 20 // 100 MB
    )
    
    // worker manages a worker process running a test binary. The worker object
    // exists only in the coordinator (the process started by 'go test -fuzz').
    // workerClient is used by the coordinator to send RPCs to the worker process,
    // which handles them with workerServer.
    type worker struct {
    	dir     string   // working directory, same as package directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/worker.go

    		}
    	}
    }
    
    // stop stops the probe worker. The worker handles cleanup and removes itself from its manager.
    // It is safe to call stop multiple times.
    func (w *worker) stop() {
    	select {
    	case w.stopCh <- struct{}{}:
    	default: // Non-blocking.
    	}
    }
    
    // doProbe probes the container once and records the result.
    // Returns whether the worker should continue.
    func (w *worker) doProbe(ctx context.Context) (keepGoing bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

        }
    }
    """
    
            when:
            fails 'resolve'
    
            then:
            failureHasCause("Did not resolve 'org:test:1.1' which has been forced / substituted to a different version: '1.0'")
        }
    
        def "fails when a substitute overwrites a locked version"() {
            given:
            mavenRepo.module('org', 'test', '1.0').publish()
            mavenRepo.module('org', 'test', '1.1').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                        logger.warn("The following goals are not marked as thread-safe in " + project.getName() + ":");
                        for (MojoDescriptor unsafeGoal : unsafeGoals) {
                            logger.warn("  " + unsafeGoal.getId());
                        }
                    } else {
                        logger.warn("The following plugins are not marked as thread-safe in " + project.getName() + ":");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top