Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,162 for Types (0.33 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types.go

    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	// Defaults to ImplementationSpecific.
    	PathType *PathType `json:"pathType,omitempty" protobuf:"bytes,3,opt,name=pathType"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/types.go

    }
    
    // FieldTypeMap constructs a map of the field and object types nested within a given type.
    func FieldTypeMap(path string, t *DeclType) map[string]*DeclType {
    	if t.IsObject() && t.TypeName() != "object" {
    		path = t.TypeName()
    	}
    	types := make(map[string]*DeclType)
    	buildDeclTypes(path, t, types)
    	return types
    }
    
    func buildDeclTypes(path string, t *DeclType, types map[string]*DeclType) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

            }
        }
    
        /**
         * Returns the most common type among given types
         */
        public static Type getUppermostType(Type[] types) {
            Type result = types[0];
            for (int i = 1; i < types.length; i++) {
                Type type = types[i];
                if (isAssignable(type, result)) {
                    result = type;
                    continue;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// +optional
    	Transport *Transport `json:"transport,omitempty"`
    }
    
    // ProtocolType is a set of valid values for Connection.ProtocolType
    type ProtocolType string
    
    // Valid types for ProtocolType for konnectivity server
    const (
    	// Use HTTPConnect to connect to konnectivity server
    	ProtocolHTTPConnect ProtocolType = "HTTPConnect"
    	// Use grpc to connect to konnectivity server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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. pkg/apis/resource/types.go

    limitations under the License.
    */
    
    package resource
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ResourceClaim describes which resources are needed by a resource consumer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. pkg/apis/certificates/types.go

    	//  2. Permitted subjects: and behavior when a disallowed subject is requested.
    	//  3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.
    	//  4. Required, permitted, or forbidden key usages / extended key usages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    type UncountedTerminatedPods struct {
    	// succeeded holds UIDs of succeeded Pods.
    	// +listType=set
    	// +optional
    	Succeeded []types.UID
    
    	// failed holds UIDs of failed Pods.
    	// +listType=set
    	// +optional
    	Failed []types.UID
    }
    
    // JobConditionType is a valid value for JobCondition.Type
    type JobConditionType string
    
    // These are valid conditions of a job.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top