Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 853 for Types (0.17 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/autoscaling/v1/types.go

    // +structType=atomic
    type CrossVersionObjectReference struct {
    	// kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    	Kind string `json:"kind" protobuf:"bytes,1,opt,name=kind"`
    
    	// name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1/types.go

    	// Name of the referent.
    	// +optional
    	Name string `json:"name,omitempty" protobuf:"bytes,3,opt,name=name"`
    	// UID of the referent.
    	// +optional
    	UID types.UID `json:"uid,omitempty" protobuf:"bytes,4,opt,name=uID,casttype=k8s.io/apimachinery/pkg/types.UID"`
    }
    
    // +genclient
    // +genclient:nonNamespaced
    // +genclient:onlyVerbs=create
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1/types.go

    )
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    type FlowDistinguisherMethod struct {
    	// `type` is the type of flow distinguisher method
    	// The supported types are "ByUser" and "ByNamespace".
    	// Required.
    	Type FlowDistinguisherMethodType `json:"type" protobuf:"bytes,1,opt,name=type"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	KubeletHealthCheck *metav1.Duration `json:"kubeletHealthCheck,omitempty"`
    
    	// KubernetesAPICall is the amount of time to wait for the kubeadm client to complete a request to
    	// the API server. This applies to all types of methods (GET, POST, etc).
    	// Default: 1m
    	// +optional
    	KubernetesAPICall *metav1.Duration `json:"kubernetesAPICall,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // ConversionStrategyType describes different conversion types.
    type ConversionStrategyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top