Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,387 for startm (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerControl.java

     */
    
    package org.gradle.process.internal.worker;
    
    import org.gradle.process.ExecResult;
    
    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();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/types.go

    )
    
    // Manager manages all the DRA resource plugins running on a node.
    type Manager interface {
    	// Start starts the reconcile loop of the manager.
    	// This will ensure that all claims are unprepared even if pods get deleted unexpectedly.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady) error
    
    	// PrepareResources prepares resources for a pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

                thread.start()
                return thread
            } finally {
                lock.unlock()
            }
        }
    
        /**
         * Starts a thread which executes the given action/closure. Does not wait for the thread to complete.
         *
         * @return A handle to the test thread.
         */
        TestParticipant start(Runnable cl) {
            lock.lock()
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/runtime/debug/example_monitor_test.go

    	if err != nil {
    		log.Fatalf("StdinPipe: %v", err)
    	}
    	debug.SetCrashOutput(pipe.(*os.File), debug.CrashOptions{}) // (this conversion is safe)
    	if err := cmd.Start(); err != nil {
    		log.Fatalf("can't start monitor: %v", err)
    	}
    	// Now return and start the application proper...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/ByteOutput.java

            this.file = file;
            bufferedOutputStream = new ResettableBufferedOutputStream(new RandomAccessFileOutputStream(file));
        }
    
        /**
         * Starts writing to the given offset. Can be beyond the current length of the file.
         */
        public DataOutputStream start(long offset) throws IOException {
            file.seek(offset);
            bufferedOutputStream.clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            waitFor("started")
            daemons.daemon.assertBusy()
            client.kill()
            daemons.daemon.becomesCanceled()
    
            when:
            def build = executer.withTasks("help").withArguments("--info").start()
            ConcurrentTestUtil.poll {
                assert build.standardOutput.contains(DaemonMessages.WAITING_ON_CANCELED)
            }
            release("block")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    	b11.Event("GoStop", "whatever", testgen.NoStack)
    
    	g2 := t.Generation(2)
    
    	// Start running the goroutine, but later.
    	b21 := g2.Batch(trace.ThreadID(1), 3)
    	b21.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    	b21.Event("GoStart", trace.GoID(1), testgen.Seq(2))
    
    	// The goroutine starts running, then stops, then starts again.
    	b20 := g2.Batch(trace.ThreadID(0), 5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

        /**
         * Appends a formatted string using the current style and starts a new line.
         *
         * @param pattern The pattern string
         * @param args    The args for the pattern
         * @return this
         */
        StyledTextOutput formatln(String pattern, Object... args);
    
        /**
         * Starts a new line.
         *
         * @return this
         */
        StyledTextOutput println();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			// alignment should be different from that of stextOffset.
    			return start - *stextOffset, true
    		}
    
    		return start - loadSegment.Vaddr, true
    	}
    	if start%pageSize != 0 && stextOffset != nil && *stextOffset%pageSize == start%pageSize {
    		// ChromeOS remaps its kernel to 0 + start%pageSize. Nothing
    		// else should come down this path. Empirical values:
    		//       start=0x198 limit=0x2f9fffff offset=0
    		//       VADDR=0xffffffff81000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceWorkerLeaseTest.groovy

        }
    
        def "run as worker starts immediately when there are sufficient leases available"() {
            def registry = workerLeaseService(2)
    
            expect:
            async {
                start {
                    registry.runAsWorkerThread {
                        instant.worker1
                        thread.blockUntil.worker2
                    }
                }
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top