Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,898 for typeA (0.05 sec)

  1. staging/src/k8s.io/apimachinery/pkg/version/types.go

    limitations under the License.
    */
    
    package version
    
    // Info contains versioning information.
    // TODO: Add []string of api versions supported? It's still unclear
    // how we'll want to distribute that information.
    type Info struct {
    	Major        string `json:"major"`
    	Minor        string `json:"minor"`
    	GitVersion   string `json:"gitVersion"`
    	GitCommit    string `json:"gitCommit"`
    	GitTreeState string `json:"gitTreeState"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 17 11:34:05 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  2. 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. operator/pkg/apis/istio/v1alpha1/types.go

    //	  components:
    //	    egressGateways:
    //	    - name: istio-egressgateway
    //	      enabled: true
    //
    // +kubetype-gen
    // +kubetype-gen:groupVersion=install.istio.io/v1alpha1
    // +k8s:deepcopy-gen=true
    type IstioOperator struct {
    	metav1.TypeMeta `json:",inline"`
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Spec defines the implementation of this definition.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 15 10:49:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/config/types.go

    func filterEmpty(strs []string) []string {
    	filtered := make([]string, 0, len(strs))
    	for _, s := range strs {
    		if s == "" {
    			continue
    		}
    		filtered = append(filtered, s)
    	}
    	return filtered
    }
    
    type InterceptFilter struct {
    	Values []string
    	Except bool
    }
    
    func ParseInterceptFilter(include, exclude string) InterceptFilter {
    	if include == "*" {
    		excludes := Split(exclude)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    // BootstrapToken represents information for the bootstrap token output produced by kubeadm
    type BootstrapToken struct {
    	metav1.TypeMeta `json:",inline"`
    
    	bootstraptokenv1.BootstrapToken
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Images represents information for the output produced by 'kubeadm config images list'
    type Images struct {
    	metav1.TypeMeta `json:",inline"`
    
    	Images []string `json:"images"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pkg/apis/apiserverinternal/types.go

    type StorageVersionConditionType string
    
    const (
    	//AllEncodingVersionsEqual Indicates that encoding storage versions reported by all servers are equal.
    	AllEncodingVersionsEqual StorageVersionConditionType = "AllEncodingVersionsEqual"
    )
    
    // ConditionStatus indicates status of condition from "True", "False", or "Unknown"
    type ConditionStatus string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/apis/apps/types.go

    }
    
    // StatefulSetConditionType describes the condition types of StatefulSets.
    type StatefulSetConditionType string
    
    // TODO: Add valid condition types for Statefulsets.
    
    // StatefulSetCondition describes the state of a statefulset at a certain point.
    type StatefulSetCondition struct {
    	// Type of statefulset condition.
    	Type StatefulSetConditionType
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. pkg/apis/abac/v0/types.go

    package v0
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Policy contains a single ABAC policy rule
    type Policy struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// User is the username this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all users.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 18 16:05:04 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/types.go

    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    	schedulerframework "k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Manager manages all the Device Plugins running on a node.
    type Manager interface {
    	// Start starts device plugin registration service.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady, initialContainers containermap.ContainerMap, initialContainerRunningSet sets.Set[string]) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/kubelet/cadvisor/types.go

    limitations under the License.
    */
    
    //go:generate mockgen -source=types.go -destination=testing/cadvisor_mock.go -package=testing Interface
    package cadvisor
    
    import (
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    )
    
    // Interface is an abstract interface for testability.  It abstracts the interface to cAdvisor.
    type Interface interface {
    	Start() error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top