Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,650 for marking (0.23 sec)

  1. src/runtime/stack.go

    			// It's not safe for someone to shrink this stack while we're actively
    			// parking on a channel, but it is safe to grow since we do that
    			// ourselves and explicitly don't want to synchronize with channels
    			// since we could self-deadlock.
    			throw("racy sudog adjustment due to parking on channel")
    		}
    		adjustsudogs(gp, &adjinfo)
    	} else {
    		// sudogs may be pointing in to the stack and gp has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    	// window and that goroutine didn't observe that tracing had begun, then we might write
    	// a GoStatus(GoWaiting) event for that goroutine, but it won't trace an event marking
    	// the transition from GoWaiting to GoRunnable. The trace will then be broken, because
    	// future events will be emitted assuming the tracer sees GoRunnable.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. src/runtime/mgcsweep.go

    //
    // The world must be stopped. This ensures there are no sweeps in
    // progress.
    //
    //go:nowritebarrier
    func finishsweep_m() {
    	assertWorldStopped()
    
    	// Sweeping must be complete before marking commences, so
    	// sweep any unswept spans. If this is a concurrent GC, there
    	// shouldn't be any spans left to sweep, so this should finish
    	// instantly. If GC was forced before the concurrent sweep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. src/go/ast/ast.go

    // match the corresponding Go spec production names to which they
    // correspond. The node fields correspond to the individual parts
    // of the respective productions.
    //
    // All nodes contain position information marking the beginning of
    // the corresponding source text segment; it is accessible via the
    // Pos accessor method. Nodes may contain additional position info
    // for language constructs where comments may be found between parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  5. src/runtime/arena.go

    // same arena.
    func (a *userArena) new(typ *_type) unsafe.Pointer {
    	return a.alloc(typ, -1)
    }
    
    // slice allocates a new slice backing store. slice must be a pointer to a slice
    // (i.e. *[]T), because userArenaSlice will update the slice directly.
    //
    // cap determines the capacity of the slice backing store and must be non-negative.
    //
    // This operation is not safe to call concurrently with other operations on the
    // same arena.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	// isn't held. (Entries never transitions back to nil.)
    	//
    	// In general, this is a two-level mapping consisting of an L1
    	// map and possibly many L2 maps. This saves space when there
    	// are a huge number of arena frames. However, on many
    	// platforms (even 64-bit), arenaL1Bits is 0, making this
    	// effectively a single-level map. In this case, arenas[0]
    	// will never be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	label := []string{}
    	prof := rpt.prof
    	o := rpt.options
    	if len(prof.Mapping) > 0 {
    		if prof.Mapping[0].File != "" {
    			label = append(label, "File: "+filepath.Base(prof.Mapping[0].File))
    		}
    		if prof.Mapping[0].BuildID != "" {
    			label = append(label, "Build ID: "+prof.Mapping[0].BuildID)
    		}
    	}
    	// Only include comments that do not start with '#'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/order.go

    //
    // For:
    //
    //	x = m[string(k)]
    //	x = m[T1{... Tn{..., string(k), ...}}]
    //
    // where k is []byte, T1 to Tn is a nesting of struct and array literals,
    // the allocation of backing bytes for the string can be avoided
    // by reusing the []byte backing array. These are special cases
    // for avoiding allocations when converting byte slices to strings.
    // It would be nice to handle these generally, but because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        }
        try {
          ClosingFuture.whenAllSucceed(asList(closingFuture));
          fail();
        } catch (IllegalStateException expected) {
        }
      }
    
      /** Asserts that marking this step a final step throws {@link IllegalStateException}. */
      protected void assertFinalStepThrowsIllegalStateException(ClosingFuture<?> closingFuture) {
        try {
          closingFuture.finishToFuture();
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager.go

    			if status.Phase == v1.PodRunning && isCached {
    				klog.InfoS("Terminal running pod should have already been marked as failed, programmer error", "pod", klog.KObj(pod), "podUID", pod.UID)
    			}
    			klog.V(3).InfoS("Marking terminal pod as failed", "oldPhase", status.Phase, "pod", klog.KObj(pod), "podUID", pod.UID)
    			status.Phase = v1.PodFailed
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
Back to top