Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for Transition (0.24 sec)

  1. src/cmd/trace/pprof.go

    		for i := range events {
    			ev := &events[i]
    
    			// Filter out any non-state-transitions and events without stacks.
    			if ev.Kind() != trace.EventStateTransition {
    				continue
    			}
    			stack := ev.Stack()
    			if stack == trace.NoStack {
    				continue
    			}
    
    			// The state transition has to apply to a goroutine.
    			st := ev.StateTransition()
    			if st.Resource.Kind != trace.ResourceGoroutine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/list.md

    | `minio_node_ilm_transition_pending_tasks`                    | Number of pending ILM transition tasks in the queue.                                                       |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      void Lateral();
    
      // Steps up one parallel nesting level.
      void Up();
    
      // Transitions nesting levels from `from` to `to`.
      void Transition(ParallelIdsMap from, ParallelIdsMap to);
    
      // Transitions nesting levels from the previous parallel id to `to`.
      void TransitionToParallelIdsMap(ParallelIdsMap to);
    
      // Transitions nesting levels from the previous parallel id to `to`.
      void TransitionToOp(Operation* to);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/runtime/slice.go

    	if newLen > doublecap {
    		return newLen
    	}
    
    	const threshold = 256
    	if oldCap < threshold {
    		return doublecap
    	}
    	for {
    		// Transition from growing 2x for small slices
    		// to growing 1.25x for large slices. This formula
    		// gives a smooth-ish transition between the two.
    		newcap += (newcap + 3*threshold) >> 2
    
    		// We need to check `newcap >= newLen` and whether `newcap` overflowed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/internal/trace/event.go

    //
    // Note that for proc state transitions this always refers to the
    // state before the transition. For example, if a proc is just
    // starting to run on this thread, then this will return NoProc.
    func (e Event) Proc() ProcID {
    	return e.ctx.P
    }
    
    // Thread returns the ID of the thread this event pertains to.
    //
    // Note that for thread state transitions this always refers to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// `message` is a human-readable message indicating details about last transition.
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. docs/metrics/v3.md

    | `minio_cluster_ilm_transition_pending_tasks`          | `gauge`   | Number of pending ILM transition tasks in the queue                        | `server` |
    | `minio_cluster_ilm_transition_missed_immediate_tasks` | `counter` | Number of missed immediate ILM transition tasks                            | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  8. cmd/erasure-metadata.go

    			objInfo.RestoreExpires, _ = restoreStatus.Expiry()
    		}
    	}
    	objInfo.Checksum = fi.Checksum
    	objInfo.Inlined = fi.InlineData()
    	// Success.
    	return objInfo
    }
    
    // TransitionInfoEquals returns true if transition related information are equal, false otherwise.
    func (fi FileInfo) TransitionInfoEquals(ofi FileInfo) bool {
    	switch {
    	case fi.TransitionStatus != ofi.TransitionStatus,
    		fi.TransitionTier != ofi.TransitionTier,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. cmd/object-api-interface.go

    	DeleteReplication   ReplicationState    // Represents internal replication state needed for Delete replication
    	Transition          TransitionOptions
    	Expiration          ExpirationOptions
    	LifecycleAuditEvent lcAuditEvent
    
    	WantChecksum *hash.Checksum // x-amz-checksum-XXX checksum sent to PutObject/ CompleteMultipartUpload.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    	// always double-check gen.
    	//
    	// Transitioning this value from false -> true is harder. We need to make sure
    	// this is observable as true strictly before gen != 0. To maintain this invariant
    	// we only make this transition with the world stopped and use the store to gen
    	// as a publication barrier.
    	enabled bool
    
    	// enabledWithAllocFree is set if debug.traceallocfree is != 0 when tracing begins.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top