Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 148 for clocks (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

    import javax.annotation.Nullable;
    import javax.inject.Inject;
    
    /**
     * Universal APIs that are available for all {@code dependencies} blocks.
     *
     * @apiNote This interface is intended to be used to mix-in DSL methods for {@code dependencies} blocks.
     * @implSpec The default implementation of all methods should not be overridden.
     * @implNote Changes to this interface may require changes to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/SuiteTestClassProcessorTest.groovy

    import org.gradle.internal.time.Clock
    import spock.lang.Specification
    
    class SuiteTestClassProcessorTest extends Specification {
        private final TestResultProcessor resultProcessor = Mock()
        private final TestClassProcessor targetProcessor = Mock()
        private final TestDescriptorInternal suiteDescriptor = Mock()
        private final TestClassRunInfo testClass = Mock()
        private final Clock timeProvider = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/runtime/cpuprof.go

    	lock(&cpuprof.lock)
    	log := cpuprof.log
    	unlock(&cpuprof.lock)
    	readMode := profBufBlocking
    	if GOOS == "darwin" || GOOS == "ios" {
    		readMode = profBufNonBlocking // For #61768; on Darwin notes are not async-signal-safe.  See sigNoteSetup in os_darwin.go.
    	}
    	data, tags, eof := log.read(readMode)
    	if len(data) == 0 && eof {
    		lock(&cpuprof.lock)
    		cpuprof.log = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/build/relnote/links.go

    	case *md.Quote:
    		addSymbolLinksBlocks(b.Blocks, defaultPackage)
    	// no links in these blocks
    	case *md.CodeBlock:
    	case *md.HTMLBlock:
    	case *md.Empty:
    	case *md.ThematicBreak:
    	default:
    		panic(fmt.Sprintf("unknown block type %T", b))
    	}
    }
    
    // addSymbolLinksInlines looks for symbol links in the slice of inline markdown
    // elements. It returns a new slice of inline elements with links added.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ClassLoaderCache.java

    import javax.annotation.Nullable;
    import javax.annotation.concurrent.ThreadSafe;
    import java.util.UUID;
    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    @ThreadSafe
    @ServiceScope(Scope.Global.class)
    public class ClassLoaderCache {
        private final Lock lock = new ReentrantLock();
        private final Cache<ClassLoader, ClassLoaderDetails> classLoaderDetails;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/copyelim.go

    // A subsequent deadcode pass is needed to actually remove the copies.
    func copyelim(f *Func) {
    	phielim(f)
    
    	// loop of copyelimValue(v) process has been done in phielim() pass.
    	// Update block control values.
    	for _, b := range f.Blocks {
    		for i, v := range b.ControlValues() {
    			if v.Op == OpCopy {
    				b.ReplaceControl(i, v.Args[0])
    			}
    		}
    	}
    
    	// Update named values.
    	for _, name := range f.Names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. .github/workflows/slack-notifier.yml

                  "text": "<https://github.com/gradle/gradle/issues/${{ github.event.issue.number }}|[gradle/gradle#${{ github.event.issue.number }}]> `${{ github.event.issue.title }}` has label `${{ github.event.label.name }}`",
                  "blocks": [
                    {
                      "type": "section",
                      "text": {
                        "type": "mrkdwn",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. .github/workflows/notify-on-rc-for-manual-test.yml

            with:
              payload: |
                {
                  "text": "<https://github.com/gradle/gradle/${{ github.event.ref }}|[gradle/gradle#${{ github.event.ref }}]> has been pushed",
                  "blocks": [
                    {
                      "type": "section",
                      "text": {
                        "type": "mrkdwn",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         */
        <T> T useCache(Supplier<? extends T> action);
    
        /**
         * Performs some work against the cache. Acquires exclusive locks on the appropriate resources, so that the given action is the only action to execute across all processes (including this one). Releases the locks and all resources at the end of the action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerControl.java

    public interface WorkerControl {
        /**
         * Starts the worker process, blocking until successfully started.
         */
        WorkerProcess start();
    
        /**
         * Requests that the worker complete all work and stop. Blocks until the worker process has stopped.
         */
        ExecResult stop();
    
        /**
         * Requests that the worker stop immediately, without waiting for it to complete its work.
         */
        void stopNow();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top