Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for describes (0.17 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "description": "NonResourceAttributes describes information for a non-resource access request"
              },
              "resourceAttributes": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.authorization.v1.ResourceAttributes"
                  }
                ],
                "description": "ResourceAuthorizationAttributes describes information for a resource access request"
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"items":    "List of objects",
    }
    
    func (List) SwaggerDoc() map[string]string {
    	return map_List
    }
    
    var map_ListMeta = map[string]string{
    	"":                   "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message TelemetryV2StackDriverConfig {
      google.protobuf.BoolValue enabled = 1;
    }
    
    // PilotConfigSource describes information about a configuration store inside a
    // mesh. A single control plane instance can interact with one or more data
    // sources.
    message PilotConfigSource {
      // Describes the source of configuration, if nothing is specified default is MCP.
      repeated string subscribedResources = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	rate := int64(atomic.Load64(&mutexprofilerate))
    	if rate > 0 && cheaprand64()%rate == 0 {
    		saveblockevent(cycles, rate, skip+1, mutexProfile)
    	}
    }
    
    // Go interface to profile data.
    
    // A StackRecord describes a single execution stack.
    type StackRecord struct {
    	Stack0 [32]uintptr // stack trace for this record; ends at first 0 entry
    }
    
    // Stack returns the stack trace associated with the record,
    // a prefix of r.Stack0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    		if !drop[m.Path] {
    			roots = append(roots, m)
    		}
    	}
    	roots = append(roots, replace...)
    	gover.ModSort(roots)
    	return newRequirements(rs.pruning, roots, rs.direct)
    }
    
    // A ConstraintError describes inconsistent constraints in EditBuildList
    type ConstraintError struct {
    	// Conflict lists the source of the conflict for each version in mustSelect
    	// that could not be selected due to the requirements of some other version in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // separate packages.
    package v1
    
    import (
    	"fmt"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // TypeMeta describes an individual object in an API response or request
    // with strings representing the type of the object and its API schema version.
    // Structures that are versioned or persisted should inline TypeMeta.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    		check.convertUntyped(x, y.typ)
    		if x.mode == invalid {
    			return
    		}
    		check.convertUntyped(y, x.typ)
    		if y.mode == invalid {
    			x.mode = invalid
    			return
    		}
    	}
    }
    
    // exprKind describes the kind of an expression; the kind
    // determines if an expression is valid in 'statement context'.
    type exprKind int
    
    const (
    	conversion exprKind = iota
    	expression
    	statement
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/time/format.go

    		case stdFracSecond0, stdFracSecond9:
    			b = appendNano(b, t.Nanosecond(), std)
    		}
    	}
    	return b
    }
    
    var errBad = errors.New("bad value for field") // placeholder not passed to user
    
    // ParseError describes a problem parsing a time string.
    type ParseError struct {
    	Layout     string
    	Value      string
    	LayoutElem string
    	ValueElem  string
    	Message    string
    }
    
    // newParseError creates a new ParseError.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    	cmd := &cobra.Command{
    		Use:     "pod <pod>",
    		Aliases: []string{"po"},
    		Short:   "Describe pods and their Istio configuration [kube-only]",
    		Long: `Analyzes pod, its Services, DestinationRules, and VirtualServices and reports
    the configuration objects that affect that pod.`,
    		Example: `  istioctl experimental describe pod productpage-v1-c7765c886-7zzd4`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional ListMeta metadata = 1;
    
      // List of objects
      repeated k8s.io.apimachinery.pkg.runtime.RawExtension items = 2;
    }
    
    // ListMeta describes metadata that synthetic resources must have, including lists and
    // various status objects. A resource may have only one of {ObjectMeta, ListMeta}.
    message ListMeta {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top