Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ResourceKind (0.5 sec)

  1. src/internal/trace/resources.go

    		return "Running"
    	case ProcIdle:
    		return "Idle"
    	}
    	return "Bad"
    }
    
    // ResourceKind indicates a kind of resource that has a state machine.
    //
    // New ResourceKinds may be added in the future. Users of this type must be robust
    // to that possibility.
    type ResourceKind uint8
    
    const (
    	ResourceNone      ResourceKind = iota // No resource.
    	ResourceGoroutine                     // Goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	params := []*restful.Parameter{}
    	actions := []action{}
    
    	var resourceKind string
    	kindProvider, ok := storage.(rest.KindProvider)
    	if ok {
    		resourceKind = kindProvider.Kind()
    	} else {
    		resourceKind = kind
    	}
    
    	tableProvider, isTableProvider := storage.(rest.TableConvertor)
    	if isLister && !isTableProvider {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // TensorFlow resources and side effects
    //===----------------------------------------------------------------------===//
    
    class TF_ResourceBase<string resourceKind> :
      Resource<!strconcat("::mlir::TF::ResourceEffects::", resourceKind)> {
    }
    
    // Resource types
    def TF_VariableResource : TF_ResourceBase<"Variable">;
    def TF_StackResource : TF_ResourceBase<"Stack">;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    // * Please keep this list sorted alphabetically by the pkg.name of the analyzer for convenience
    // * Expected messages are in the format {msg.ValidationMessageType, "<ResourceKind>/<Namespace>/<ResourceName>"}.
    //   - Note that if Namespace is omitted in the input YAML, it will be skipped here.
    var testGrid = []testCase{
    	{
    		name: "misannoted",
    		inputFiles: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. src/internal/trace/event.go

    	EventStackSample
    
    	// EventRangeBegin and EventRangeEnd are a pair of generic events representing
    	// a special range of time. Ranges are named and scoped to some resource
    	// (identified via ResourceKind). A range that has begun but has not ended
    	// is considered active.
    	//
    	// EvRangeBegin and EvRangeEnd will share the same name, and an End will always
    	// follow a Begin on the same instance of the resource. The associated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top