Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 164 for Implementation (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/node/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // handler specifies the underlying runtime and configuration that the CRI
      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook.go

    )
    
    func init() {
    	install.Install(audit.Scheme)
    }
    
    // retryOnError enforces the webhook client to retry requests
    // on error regardless of its nature.
    // The default implementation considers a very limited set of
    // 'retriable' errors, assuming correct use of HTTP codes by
    // external webhooks.
    // That may easily lead to dropped audit events. In fact, there is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:13:31 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top