Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,644 for starts (0.09 sec)

  1. android/guava/src/com/google/common/base/Stopwatch.java

        return new Stopwatch(ticker);
      }
    
      /**
       * Creates (and starts) a new stopwatch using {@link System#nanoTime} as its time source.
       *
       * @since 15.0
       */
      public static Stopwatch createStarted() {
        return new Stopwatch().start();
      }
    
      /**
       * Creates (and starts) a new stopwatch, using the specified time source.
       *
       * @since 15.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Nov 15 21:38:09 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  2. test/nilptr.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that the implementation catches nil ptr indirection
    // in a large address space.
    
    // Address space starts at 1<<32 on AIX and on darwin/arm64 and on windows/arm64, so dummy is too far.
    //go:build !aix && (!darwin || !arm64) && (!windows || !arm64)
    
    package main
    
    import "unsafe"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcshared/testdata/libgo4/libgo4.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "C"
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    )
    
    // RunGoroutines starts some goroutines that don't do anything.
    // The idea is to get some threads going, so that a signal will be delivered
    // to a thread started by Go.
    //
    //export RunGoroutines
    func RunGoroutines() {
    	for i := 0; i < 4; i++ {
    		go func() {
    			runtime.LockOSThread()
    			select {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 864 bytes
    - Viewed (0)
  4. src/cmd/internal/objabi/util.go

    )
    
    // HeaderString returns the toolchain configuration string written in
    // Go object headers. This string ensures we don't attempt to import
    // or link object files that are incompatible with each other. This
    // string always starts with "go object ".
    func HeaderString() string {
    	archExtra := ""
    	if k, v := buildcfg.GOGOARCH(); k != "" && v != "" {
    		archExtra = " " + k + "=" + v
    	}
    	return fmt.Sprintf("go object %s %s %s%s X:%s\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 12:40:45 UTC 2022
    - 961 bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/execution/TaskSelectorsAndOrdinalNodeIntegrationTest.groovy

    import spock.lang.Issue
    import spock.lang.Timeout
    
    class TaskSelectorsAndOrdinalNodeIntegrationTest extends AbstractIntegrationSpec {
        /**
         * If this build starts to time out, something is seriously wrong.
         *
         * This build should complete in ~seconds.
         */
        @Timeout(60)
        @Issue("https://github.com/gradle/gradle/issues/20741")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. cmd/setup-type.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // SetupType - enum for setup type.
    type SetupType int
    
    const (
    	// UnknownSetupType - starts with unknown setup type.
    	UnknownSetupType SetupType = iota
    
    	// FSSetupType - FS setup type enum.
    	FSSetupType
    
    	// ErasureSDSetupType - Erasure single drive setup enum.
    	ErasureSDSetupType
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessorTest.groovy

            getJavaCommand() >> Stub(JavaExecHandleBuilder)
        }
        WorkerProcessFactory workerProcessFactory = Stub(WorkerProcessFactory) {
            create(_) >> workerProcessBuilder
        }
    
        def "acquires worker lease and starts worker process on first test"() {
            given:
            def test1 = Mock(TestClassRunInfo)
            def test2 = Mock(TestClassRunInfo)
            def processor = newProcessor()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

        File getDirectory();
    
        String getCommand();
    
        List<String> getArguments();
    
        Map<String, String> getEnvironment();
    
        /**
         * Starts this process, blocking until the process has started.
         *
         * @return this
         */
        ExecHandle start();
    
        void removeStartupContext();
    
        ExecHandleState getState();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServerConnector.java

     * <p>
     * A server connector should only be used by one daemon, and has a single use lifecycle.
     * Implementations must be threadsafe so that start/stop can be called from different threads.
     */
    public interface DaemonServerConnector extends Stoppable {
    
        /**
         * Starts accepting connections, passing any established connections to the given handler.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleStarter.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.lifecycle.internal;
    
    import org.apache.maven.execution.MavenSession;
    
    /**
     * Starts the build life cycle
     *
     */
    public interface LifecycleStarter {
    
        void execute(MavenSession session);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:56:36 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top