Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 707 for generations (0.22 sec)

  1. istioctl/pkg/wait/wait.go

    			defer cancel()
    			if generation == "" {
    				w = getAndWatchResource(ctx, cliCtx) // setup version getter from kubernetes
    			} else {
    				w = withContext(ctx)
    				w.Go(func(result chan string) error {
    					result <- generation
    					return nil
    				})
    			}
    			// wait for all deployed versions to be contained in generations
    			t := time.NewTicker(pollInterval)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/internal/trace/generation.go

    // while reading the previous one. It's passed on when parsing the next
    // generation.
    type spilledBatch struct {
    	gen uint64
    	*batch
    }
    
    // readGeneration buffers and decodes the structural elements of a trace generation
    // out of r. spill is the first batch of the new generation (already buffered and
    // parsed from reading the last generation). Returns the generation and the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. test/chan/powser2.go

    // A process is created at first demand for an item and dies
    // after the item has been sent to both outputs.
    
    // When multiple generations of split exist, the newest
    // will service requests on one channel, which is
    // always renamed to be out[0]; the oldest will service
    // requests on the other channel, out[1].  All generations but the
    // newest hold queued data that has already been sent to
    // out[0].  When data has finally been sent to out[1],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  4. test/chan/powser1.go

    // A process is created at first demand for a rat and dies
    // after the rat has been sent to both outputs.
    
    // When multiple generations of split exist, the newest
    // will service requests on one channel, which is
    // always renamed to be out[0]; the oldest will service
    // requests on the other channel, out[1].  All generations but the
    // newest hold queued data that has already been sent to
    // out[0].  When data has finally been sent to out[1],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  5. src/runtime/tracestack.go

    // from stack traces, see CL 5523.
    //
    // Avoid calling this function directly. gen needs to be the current generation
    // that this stack trace is being written out for, which needs to be synchronized with
    // generations moving forward. Prefer traceEventWriter.stack.
    func traceStack(skip int, gp *g, gen uintptr) uint64 {
    	var pcBuf [traceStackSize]uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    	This increases tracer overhead, but could be helpful as a workaround or for
    	debugging unexpected regressions caused by frame pointer unwinding.
    
    	traceadvanceperiod: the approximate period in nanoseconds between trace generations. Only
    	applies if a program is built with GOEXPERIMENT=exectracer2. Used primarily for testing
    	and debugging the execution tracer.
    
    	tracecheckstackownership: setting tracecheckstackownership=1 enables a debug check in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    		gen = trace.readerGen.Load()
    
    		// Check to see if we need to block for more data in this generation
    		// or if we need to move our generation forward.
    		if !trace.full[gen%2].empty() {
    			break
    		}
    		// Most of the time readerGen is one generation ahead of flushedGen, as the
    		// current generation is being read from. Then, once the last buffer is flushed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. src/runtime/mgcsweep.go

    // begin is called if the sweepLocker is valid.
    func (a *activeSweep) end(sl sweepLocker) {
    	if sl.sweepGen != mheap_.sweepgen {
    		throw("sweeper left outstanding across sweep generations")
    	}
    	for {
    		state := a.state.Load()
    		if (state&^sweepDrainedMask)-1 >= sweepDrainedMask {
    			throw("mismatched begin/end of activeSweep")
    		}
    		if a.state.CompareAndSwap(state, state-1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. docs/ru/docs/project-generation.md

    Vladislav Kramorenko <******@****.***> 1681408847 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 13 18:00:47 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. hack/update-codegen.sh

        )
    if [[ "${DBG_CODEGEN}" == 1 ]]; then
        kube::log::status "DBG: found ${#ALL_K8S_TAG_FILES[@]} +k8s: tagged files"
    fi
    
    #
    # Code generation logic.
    #
    
    # protobuf generation
    #
    # Some of the later codegens depend on the results of this, so it needs to come
    # first in the case of regenerating everything.
    function codegen::protobuf() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top