Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,303 for starts (0.14 sec)

  1. src/html/template/examplefiles_test.go

    	})
    	// Clean up after the test; another quirk of running as an example.
    	defer os.RemoveAll(dir)
    
    	// pattern is the glob pattern used to find all the template files.
    	pattern := filepath.Join(dir, "*.tmpl")
    
    	// Here starts the example proper.
    	// T0.tmpl is the first name matched, so it becomes the starting template,
    	// the value returned by ParseGlob.
    	tmpl := template.Must(template.ParseGlob(pattern))
    
    	err := tmpl.Execute(os.Stdout, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         *
         * @return The result.
         */
        ExecutionFailure runWithFailure();
    
        /**
         * Starts executing the build asynchronously.
         *
         * @return the handle, never null.
         */
        GradleHandle start();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    	g.Start(func() {
    		f(stopCh)
    	})
    }
    
    // StartWithContext starts f in a new goroutine in the group.
    // ctx is passed to f as an argument. f should stop when ctx.Done() is available.
    func (g *Group) StartWithContext(ctx context.Context, f func(context.Context)) {
    	g.Start(func() {
    		f(ctx)
    	})
    }
    
    // Start starts f in a new goroutine in the group.
    func (g *Group) Start(f func()) {
    	g.wg.Add(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/testdata/libgo5/libgo5.go

    package main
    
    import "C"
    
    import (
    	"os"
    	"os/signal"
    	"syscall"
    	"time"
    )
    
    // The channel used to read SIGIO signals.
    var sigioChan chan os.Signal
    
    // CatchSIGIO starts catching SIGIO signals.
    //
    //export CatchSIGIO
    func CatchSIGIO() {
    	sigioChan = make(chan os.Signal, 1)
    	signal.Notify(sigioChan, syscall.SIGIO)
    }
    
    // ResetSIGIO stops catching SIGIO signals.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 986 bytes
    - Viewed (0)
  5. dockerscripts/docker-entrypoint.sh

    #!/bin/sh
    #
    
    # If command starts with an option, prepend minio.
    if [ "${1}" != "minio" ]; then
    	if [ -n "${1}" ]; then
    		set -- minio "$@"
    	fi
    fi
    
    docker_switch_user() {
    	if [ -n "${MINIO_USERNAME}" ] && [ -n "${MINIO_GROUPNAME}" ]; then
    		if [ -n "${MINIO_UID}" ] && [ -n "${MINIO_GID}" ]; then
    			chroot --userspec=${MINIO_UID}:${MINIO_GID} / "$@"
    		else
    			echo "${MINIO_USERNAME}:x:1000:1000:${MINIO_USERNAME}:/:/sbin/nologin" >>/etc/passwd
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 675 bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

        }
    
        def "starts capturing only on first test"() {
            def test = new DefaultTestDescriptor("2", "Bar", "Baz")
            def testEvent = new TestStartEvent(2, "1")
    
            processor.started(new DefaultTestSuiteDescriptor("1", "Foo"), new TestStartEvent(1))
    
            when: processor.started(test, testEvent)
    
            then:
            1 * target.started(test, testEvent)
            1 * redirector.setOutputOwner("2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/text/template/examplefiles_test.go

    	})
    	// Clean up after the test; another quirk of running as an example.
    	defer os.RemoveAll(dir)
    
    	// pattern is the glob pattern used to find all the template files.
    	pattern := filepath.Join(dir, "*.tmpl")
    
    	// Here starts the example proper.
    	// T0.tmpl is the first name matched, so it becomes the starting template,
    	// the value returned by ParseGlob.
    	tmpl := template.Must(template.ParseGlob(pattern))
    
    	err := tmpl.Execute(os.Stdout, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  8. 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: Thu Feb 23 15:09:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/testdata/libgo3/libgo3.go

    package main
    
    import "C"
    
    import (
    	"os"
    	"os/signal"
    	"syscall"
    	"time"
    )
    
    // The channel used to read SIGIO signals.
    var sigioChan chan os.Signal
    
    // CatchSIGIO starts catching SIGIO signals.
    //
    //export CatchSIGIO
    func CatchSIGIO() {
    	sigioChan = make(chan os.Signal, 1)
    	signal.Notify(sigioChan, syscall.SIGIO)
    }
    
    // ResetSIGIO stops catching SIGIO signals.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1020 bytes
    - Viewed (0)
  10. testing/smoke-ide-test/build.gradle.kts

        dependsOn(unzipIdeStarter)
    }
    
    dependencies {
        ideStarter(libs.gradleIdeStarter)
        smokeIdeTestDistributionRuntimeOnly(project(":distributions-full")) {
            because("Tests starts an IDE with using current Gradle distribution")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 18:13:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top