Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,074 for Types (0.17 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// Some subresources do not return normal resources, these will have null or empty return types.
    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    	// acceptedTypes describes the kinds that this endpoint accepts.
    	// Subresources may accept the standard content types or define
    	// custom negotiation schemes. The list may not be exhaustive for
    	// all operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1/types.go

    	// +optional
    	Version string `json:"version,omitempty" protobuf:"bytes,4,opt,name=version"`
    	// Resource is one of the existing resource types.  "*" means all.
    	// +optional
    	Resource string `json:"resource,omitempty" protobuf:"bytes,5,opt,name=resource"`
    	// Subresource is one of the existing resource types.  "" means none.
    	// +optional
    	Subresource string `json:"subresource,omitempty" protobuf:"bytes,6,opt,name=subresource"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/versions/types.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package versions
    
    import (
    	"go/types"
    )
    
    // GoVersion returns the Go version of the type package.
    // It returns zero if no version can be determined.
    func GoVersion(pkg *types.Package) string {
    	// TODO(taking): x/tools can call GoVersion() [from 1.21] after 1.25.
    	if pkg, ok := any(pkg).(interface{ GoVersion() string }); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 531 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    // SideEffectClass specifies the types of side effects a webhook may have.
    type SideEffectClass string
    
    const (
    	// SideEffectClassUnknown means that no information is known about the side effects of calling the webhook.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/Types.java

      }
    
      private static Type[] toArray(Collection<Type> types) {
        return types.toArray(new Type[0]);
      }
    
      private static Iterable<Type> filterUpperBounds(Iterable<Type> bounds) {
        return Iterables.filter(bounds, Predicates.not(Predicates.<Type>equalTo(Object.class)));
      }
    
      private static void disallowPrimitiveType(Type[] types, String usedAs) {
        for (Type type : types) {
          if (type instanceof Class) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/internal/types/testdata/examples/types.go

    // even if their underlying types are identical. This is sensible because
    // we might still have methods that have different signatures or behave
    // differently depending on the type arguments, and thus we can't possibly
    // consider such types identical. Consequently:
    func _() {
    	xint = xbool // ERROR "assignment"
    }
    
    // Generic types cannot be used without instantiation.
    var _ T // ERROR "cannot use generic type T"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/Types.java

      }
    
      private static Type[] toArray(Collection<Type> types) {
        return types.toArray(new Type[0]);
      }
    
      private static Iterable<Type> filterUpperBounds(Iterable<Type> bounds) {
        return Iterables.filter(bounds, Predicates.not(Predicates.<Type>equalTo(Object.class)));
      }
    
      private static void disallowPrimitiveType(Type[] types, String usedAs) {
        for (Type type : types) {
          if (type instanceof Class) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    // SideEffectClass specifies the types of side effects a webhook may have.
    // +enum
    type SideEffectClass string
    
    const (
    	// SideEffectClassUnknown means that no information is known about the side effects of calling the webhook.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. internal/logger/target/types/types.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package types
    
    // TargetType indicates type of the target e.g. console, http, kafka
    type TargetType uint8
    
    //go:generate stringer -type=TargetType -trimprefix=Target $GOFILE
    
    // Constants for target types
    const (
    	_ TargetType = iota
    	TargetConsole
    	TargetHTTP
    	TargetKafka
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 10 18:20:21 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    // The deprecate and remove versions stated above are rough estimates and may be subject to change. We are estimating v2 types will be available in 1.28 and will support 4 versions where both v2beta1 and v2 are supported before deprecation.
    
    // APIGroupDiscoveryList is a resource containing a list of APIGroupDiscovery.
    // This is one of the types able to be returned from the /api and /apis endpoint and contains an aggregated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top