Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,898 for typeA (0.05 sec)

  1. pkg/controller/statefulset/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // StatefulSetControllerConfiguration contains elements describing StatefulSetController.
    type StatefulSetControllerConfiguration struct {
    	// concurrentStatefulSetSyncs is the number of statefulset objects that are
    	// allowed to sync concurrently. Larger number = more responsive statefulsets,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 01 05:36:14 UTC 2019
    - 956 bytes
    - Viewed (0)
  2. pkg/controller/volume/ephemeral/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // EphemeralVolumeControllerConfiguration contains elements describing EphemeralVolumeController.
    type EphemeralVolumeControllerConfiguration struct {
    	// ConcurrentEphemeralVolumeSyncs is the number of ephemeral volume syncing operations
    	// that will be done concurrently. Larger number = faster ephemeral volume updating,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 25 13:36:57 UTC 2021
    - 989 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/pluginmanager/cache/types.go

    // registers at foo.com/foo-1.9.9
    //
    // DeRegistration: When ReRegistration happens only the deletion of the new socket will trigger a DeRegister call
    type PluginHandler interface {
    	// Validate returns an error if the information provided by
    	// the potential plugin is erroneous (unsupported version, ...)
    	ValidatePlugin(pluginName string, endpoint string, versions []string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/types.go

    	return nil
    }
    
    func (m *ProxyMode) String() string {
    	if m != nil {
    		return string(*m)
    	}
    	return ""
    }
    
    func (m *ProxyMode) Type() string {
    	return "ProxyMode"
    }
    
    // LocalMode represents modes to detect local traffic from the node
    type LocalMode string
    
    // Currently supported modes for LocalMode
    const (
    	LocalModeClusterCIDR         LocalMode = "ClusterCIDR"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/types.go

    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Configuration provides configuration for the PodTolerationRestriction admission controller.
    type Configuration struct {
    	metav1.TypeMeta
    
    	// cluster level default tolerations
    	Default []api.Toleration
    
    	// cluster level whitelist of tolerations
    	Whitelist []api.Toleration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 1K bytes
    - Viewed (0)
  9. pkg/proto/types.go

    // limitations under the License.
    
    package proto
    
    import (
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    )
    
    var (
    	// BoolTrue is a bool true pointer of types.BoolValue.
    	BoolTrue = &wrappers.BoolValue{
    		Value: true,
    	}
    
    	// BoolFalse is a bool false pointer of types.BoolValue.
    	BoolFalse = &wrappers.BoolValue{
    		Value: false,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 19 21:53:59 UTC 2021
    - 902 bytes
    - Viewed (0)
  10. tools/docker-builder/types.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    // Types mirrored from https://github.com/docker/buildx/blob/master/bake/bake.go
    type Group struct {
    	Targets []string `json:"targets" hcl:"targets"`
    }
    
    type BakeFile struct {
    	Target map[string]Target `json:"target,omitempty"`
    	Group  map[string]Group  `json:"group,omitempty"`
    }
    
    type Target struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top