Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 395 for Implementation (0.2 sec)

  1. pkg/kubelet/util/store/filestore.go

    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    const (
    	// Name prefix for the temporary files.
    	tmpPrefix = "."
    )
    
    // FileStore is an implementation of the Store interface which stores data in files.
    type FileStore struct {
    	// Absolute path to the base directory for storing data files.
    	directoryPath string
    
    	// filesystem to use.
    	filesystem utilfs.Filesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 15:08:27 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types_swagger_doc_generated.go

    */
    
    package v1alpha1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. pkg/registry/storagemigration/storagemigration/strategy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package storagemigration provides Registry interface and its RESTStorage
    // implementation for storing StorageVersionMigration objects.
    package storagemigration // import "k8s.io/kubernetes/pkg/registry/storagemigration/storagemigration"
    
    import (
    	"context"
    
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup.go

    limitations under the License.
    */
    
    package waitgroup
    
    import (
    	"context"
    	"fmt"
    	"sync"
    )
    
    // RateLimiter abstracts the rate limiter used by RateLimitedSafeWaitGroup.
    // The implementation must be thread-safe.
    type RateLimiter interface {
    	Wait(ctx context.Context) error
    }
    
    // RateLimiterFactoryFunc is used by the RateLimitedSafeWaitGroup to create a new
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // form, or don't diff.)
    //
    // This format is intended to make it difficult to use these numbers without
    // writing some sort of special handling code in the hopes that that will
    // cause implementors to also use a fixed point implementation.
    //
    // +protobuf=true
    // +protobuf.embed=string
    // +protobuf.options.marshal=false
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen=true
    // +k8s:openapi-gen=true
    message Quantity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service.go

    	unixProtocol = "unix"
    	// Current version for the protocol interface definition.
    	kmsapiVersion = "v1beta1"
    
    	versionErrorf = "KMS provider api version %s is not supported, only %s is supported now"
    )
    
    // The gRPC implementation for envelope.Service.
    type gRPCService struct {
    	kmsClient      kmsapi.KeyManagementServiceClient
    	connection     *grpc.ClientConn
    	callTimeout    time.Duration
    	mux            sync.RWMutex
    	versionChecked bool
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 00:47:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/volume_manager_fake.go

    import (
    	"context"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/kubelet/config"
    	"k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    // FakeVolumeManager is a test implementation that just tracks calls
    type FakeVolumeManager struct {
    	volumes       map[v1.UniqueVolumeName]bool
    	reportedInUse map[v1.UniqueVolumeName]bool
    }
    
    // NewFakeVolumeManager creates a new VolumeManager test instance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/coordination/v1beta1/types_swagger_doc_generated.go

    */
    
    package v1beta1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/apiextensions_client.go

    	if config.UserAgent == "" {
    		config.UserAgent = rest.DefaultKubernetesUserAgent()
    	}
    
    	return nil
    }
    
    // RESTClient returns a RESTClient that is used to communicate
    // with API server by this client implementation.
    func (c *ApiextensionsV1Client) RESTClient() rest.Interface {
    	if c == nil {
    		return nil
    	}
    	return c.restClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 04:39:39 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/state/checkpoint.go

    	Version  string             `json:"version"`
    	Entries  ClaimInfoStateList `json:"entries,omitempty"`
    	Checksum checksum.Checksum  `json:"checksum"`
    }
    
    // DraManagerCheckpoint struct is an old implementation of the DraManagerCheckpoint
    type DRAManagerCheckpointWithoutResourceHandles struct {
    	Version  string                                   `json:"version"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 15:23:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top