Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,804 for startm (0.3 sec)

  1. src/cmd/link/internal/benchmark/bench.go

    		fmt.Fprintf(w, "\n")
    	}
    	fmt.Fprintf(w, "%s 1 %d ns/op\n", makeBenchString("total time"+gcString), totTime.Nanoseconds())
    }
    
    // Start marks the beginning of a new measurement phase.
    // Once a metric is started, it continues until either a Report is issued, or another Start is called.
    func (m *Metrics) Start(name string) {
    	if m == nil {
    		return
    	}
    	m.closeMark()
    	m.curMark = &mark{name: name}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/lockosthread.go

    			runtime.ReadMemStats(&m)
    		}
    	}()
    
    	// Try to synchronize both LockOSThreads.
    	start := time.Now().Add(10 * time.Millisecond)
    
    	var wg sync.WaitGroup
    	wg.Add(2)
    
    	for i := 0; i < 2; i++ {
    		go func() {
    			for time.Now().Before(start) {
    			}
    
    			// Add work to the local runq to trigger early startm
    			// in handoffp.
    			go func() {}()
    
    			runtime.LockOSThread()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. tools/packaging/common/istio-start.sh

    "
    fi
    
    # PROXY_CONFIG > PILOT_ADDRESS > ISTIO_PILOT_PORT
    export PROXY_CONFIG=${PROXY_CONFIG:-${DEFAULT_PROXY_CONFIG}}
    
    if [ "${EXEC_USER}" == "${USER:-}" ] ; then
      # if started as istio-proxy (or current user), do a normal start, without
      # redirecting stderr.
      INSTANCE_IP=${ISTIO_SVC_IP} POD_NAME=${POD_NAME} POD_NAMESPACE=${NS} "${ISTIO_BIN_BASE}/pilot-agent" proxy "${ISTIO_AGENT_FLAGS_ARRAY[@]}"
    else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/model/CalculatedValueContainerTest.groovy

            when:
            async {
                start {
                    instant.start1
                    container.finalizeIfNotAlready()
                    instant.finish1
                    assert container.get() == 1
                }
                start {
                    instant.start2
                    container.finalizeIfNotAlready()
                    instant.finish2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 19 19:42:22 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  5. pkg/test/echo/docker/echo-start.sh

    ECHO_ARGS=${ECHO_ARGS:-}
    # Split ECHO_ARGS by spaces.
    IFS=' ' read -r -a ECHO_ARGS_ARRAY <<< "$ECHO_ARGS"
    
    ISTIO_LOG_DIR=${ISTIO_LOG_DIR:-/var/log/istio}
    
    # Run the pilot agent and Envoy
    /usr/local/bin/istio-start.sh&
    
    # Start the echo server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:04:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/many-start-stop.go

    	// Start tracing again, this time writing out the result.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	runtime.GC()
    	trace.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 786 bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/stress-start-stop.go

    	}()
    
    	const iters = 5
    	for i := 0; i < iters; i++ {
    		var w io.Writer
    		if i == iters-1 {
    			w = os.Stdout
    		} else {
    			w = new(bytes.Buffer)
    		}
    		if err := trace.Start(w); err != nil {
    			log.Fatalf("failed to start tracing: %v", err)
    		}
    		time.Sleep(time.Millisecond)
    		trace.Stop()
    	}
    	<-outerDone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. pilot/pkg/status/distribution/state.go

    			delete(fractions, staleReporter)
    		}
    		c.CurrentState[key] = fractions
    	}
    }
    
    func (c *Controller) queueWriteStatus(config status.Resource, state Progress) {
    	c.workers.EnqueueStatusUpdateResource(state, config)
    }
    
    func (c *Controller) configDeleted(res config.Config) {
    	r := status.ResourceFromModelConfig(res)
    	c.workers.Delete(r)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

    }
    
    configurations {
        create("gradleScriptsElements") {
            isVisible = false
            isCanBeResolved = false
            isCanBeConsumed = true
            attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named("start-scripts"))
            outgoing.artifact(startScripts)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/state.go

    // Chdir changes the State's working directory to the given path.
    func (s *State) Chdir(path string) error {
    	dir := s.Path(path)
    	if _, err := os.Stat(dir); err != nil {
    		return &fs.PathError{Op: "Chdir", Path: dir, Err: err}
    	}
    	s.pwd = dir
    	s.Setenv("PWD", dir)
    	return nil
    }
    
    // Context returns the Context with which the State was created.
    func (s *State) Context() context.Context {
    	return s.ctx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top