Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,255 for typeA (0.05 sec)

  1. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

         *
         * @param type type whose actual type arguments should be retrieved
         * @return an array of actual type arguments for a given {@link Type}
         */
        public static Type[] getActualTypeArguments(Type type) {
            if (type instanceof Class) {
                return ((Class<?>) type).isArray() ? new Type[] {((Class<?>) type).getComponentType()} : NO_TYPES;
            } else if (type instanceof ParameterizedType) {
    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. android/guava/src/com/google/common/reflect/Types.java

            CURRENT = JAVA6;
          }
        }
    
        abstract Type newArrayType(Type componentType);
    
        abstract Type usedInGenericType(Type type);
    
        final ImmutableList<Type> usedInGenericType(Type[] types) {
          ImmutableList.Builder<Type> builder = ImmutableList.builder();
          for (Type type : types) {
            builder.add(usedInGenericType(type));
          }
          return builder.build();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Types.java

    import java.util.Set;
    
    public class Types {
        private static final Collection<Class<?>> OBJECT_TYPE = ImmutableList.<Class<?>>of(Object.class);
    
        /**
         * Visits all types in a type hierarchy in breadth-first order, super-classes first and then implemented interfaces.
         *
         * @param clazz the type of whose type hierarchy to visit.
         * @param visitor the visitor to call for each type in the hierarchy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. 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)
  5. cmd/kubeadm/app/apis/kubeadm/types.go

    type EncryptionAlgorithmType string
    
    const (
    	// EncryptionAlgorithmECDSAP256 defines the ECDSA encryption algorithm type with curve P256.
    	EncryptionAlgorithmECDSAP256 EncryptionAlgorithmType = "ECDSA-P256"
    	// EncryptionAlgorithmRSA2048 defines the RSA encryption algorithm type with key size 2048 bits.
    	EncryptionAlgorithmRSA2048 EncryptionAlgorithmType = "RSA-2048"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // HPAControllerConfiguration contains elements describing HPAController.
    type HPAControllerConfiguration struct {
    	// ConcurrentHorizontalPodAutoscalerSyncs is the number of HPA objects that are allowed to sync concurrently.
    	// Larger number = more responsive HPA processing, but more CPU (and network) load.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pkg/apis/scheduling/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PriorityClassList is a collection of priority classes.
    type PriorityClassList struct {
    	metav1.TypeMeta
    	// Standard list metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    	// +optional
    	metav1.ListMeta
    
    	// items is the list of PriorityClasses.
    	Items []PriorityClass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/types.go

    type ActivePodsFunc func() []*v1.Pod
    
    // PodCleanedUpFunc returns true if all resources associated with a pod have been reclaimed.
    type PodCleanedUpFunc func(*v1.Pod) bool
    
    // statsFunc returns the usage stats if known for an input pod.
    type statsFunc func(pod *v1.Pod) (statsapi.PodStats, bool)
    
    // rankFunc sorts the pods in eviction order
    type rankFunc func(pods []*v1.Pod, stats statsFunc)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/types.go

    	// with zero prefix size cannot be stored either.
    	HashIPPortNet Type = "hash:ip,port,net"
    	// BitmapPort represents the `bitmap:port` type ipset.  The bitmap:port set type uses a memory range, where each bit
    	// represents one TCP/UDP port.  A bitmap:port type of set can store up to 65535 ports.
    	BitmapPort Type = "bitmap:port"
    	// HashIP represents the `hash:ip` type ipset.
    	HashIP Type = "hash:ip"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pkg/kubelet/types/types.go

    limitations under the License.
    */
    
    package types
    
    import (
    	"net/http"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/cri-client/pkg/logs"
    )
    
    // TODO: Reconcile custom types in kubelet/types and this subpackage
    
    // HTTPDoer encapsulates http.Do functionality
    type HTTPDoer interface {
    	Do(req *http.Request) (*http.Response, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top