Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,210 for START (0.07 sec)

  1. cmd/kubeadm/app/util/starttime.go

    limitations under the License.
    */
    
    // Package util contains kubeadm utilities.
    package util
    
    import (
    	"time"
    )
    
    // startTime is a variable that represents the start time of the kubeadm process.
    // It can be used to consistently use the same start time instead of calling time.Now()
    // in multiple locations and ending up with minor time deviations.
    var startTime time.Time
    
    func init() {
    	startTime = time.Now()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListenerTest.groovy

        }
    
        def "when only start defined, no offset or slice location is reported"() {
            given:
            def diagnostic = Mock(Diagnostic)
            diagnostic.kind >> Diagnostic.Kind.ERROR
            diagnostic.source >> Mock(JavaFileObject) {
                name >> "SomeFile.java"
            }
            diagnostic.lineNumber >> 1
            diagnostic.columnNumber >> 1
            // Start is defined ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:58:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/internal/telemetry/telemetry.go

    package telemetry
    
    import (
    	"flag"
    	"os"
    
    	"golang.org/x/telemetry"
    	"golang.org/x/telemetry/counter"
    )
    
    // Start opens the counter files for writing if telemetry is supported
    // on the current platform (and does nothing otherwise).
    func Start() {
    	telemetry.Start(telemetry.Config{
    		TelemetryDir: os.Getenv("TEST_TELEMETRY_DIR"),
    	})
    }
    
    // StartWithUpload opens the counter files for writing if telemetry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInKotlinIntegrationTest.groovy

            // ProcessBuilder.start()
            fromStringArray() | "ProcessBuilder(*command).start()"                                                  | ""                | ""
            fromStringList()  | "ProcessBuilder(command).start()"                                                   | ""                | ""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/testprog/stress.go

    		<-done
    		wg.Done()
    	}()
    	time.Sleep(time.Millisecond) // give the goroutine above time to block
    
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	defer trace.Stop()
    
    	procs := runtime.GOMAXPROCS(10)
    	time.Sleep(50 * time.Millisecond) // test proc stop/start events
    
    	go func() {
    		runtime.LockOSThread()
    		for {
    			select {
    			case <-done:
    				return
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

                cancelAll()
              } finally {
                coordinatorWaiting = false
              }
            }
          }
        }
      }
    
      /** Start another thread, unless a new thread is already scheduled to start. */
      private fun startAnotherThread() {
        lock.assertHeld()
        if (executeCallCount > runCallCount) return // A thread is still starting.
    
        executeCallCount++
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_pgo.txt

    		panic(err)
    	}
    	err = pprof.StartCPUProfile(f)
    	if err != nil {
    		panic(err)
    	}
    	// Spin to ensure we get some samples. If we get no samples, the result
    	// is equivalent to an empty profile.
    	start := time.Now()
    	for time.Since(start) < 100*time.Millisecond {}
    	pprof.StopCPUProfile()
    	f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/trace/gstate.go

    }
    
    // start indicates that a goroutine has started running on a proc.
    func (gs *gState[R]) start(ts trace.Time, resource R, ctx *traceContext) {
    	// Set the time for all the active ranges.
    	for name := range gs.activeRanges {
    		gs.activeRanges[name] = activeRange{ts, trace.NoStack}
    	}
    
    	if gs.startCause.name != "" {
    		// It has a start cause. Emit a flow event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. tools/docker.yaml

    - name: app_sidecar_rockylinux_9
      dockerfile: pkg/test/echo/docker/Dockerfile.app_sidecar_centos_8
      files:
      - tools/packaging/common/envoy_bootstrap.json
      - tests/testdata/certs
      - pkg/test/echo/docker/echo-start.sh
      - pkg/test/echo/docker/sudoers
      targets:
      - ${TARGET_OUT_LINUX}/release/istio-sidecar.rpm
      - ${TARGET_OUT_LINUX}/client
      - ${TARGET_OUT_LINUX}/server
    - name: app_sidecar_debian_12
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/JULRedirector.java

    /**
     * Some hackery to get JUL output redirected to test output
     */
    public class JULRedirector extends DefaultStandardOutputRedirector {
        private boolean reset;
    
        @Override
        public void start() {
            super.start();
            if (!reset) {
                LogManager.getLogManager().reset();
                try {
                    LogManager.getLogManager().readConfiguration();
                } catch (IOException error) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top