Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 185 for Implementation (0.2 sec)

  1. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	// understand nodes). For services that use externalTrafficPolicy=Local, this may mean that
    	// any backends on excluded nodes are not reachable by those external load-balancers.
    	// Implementations of this exclusion may vary based on provider.
    	LabelNodeExcludeBalancers = "node.kubernetes.io/exclude-from-external-load-balancers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pkg/controller/certificates/authority/policies.go

    // CertificateAuthority. It may default or otherwise mutate a certificate
    // template.
    type SigningPolicy interface {
    	// not-exporting apply forces signing policy implementations to be internal
    	// to this package.
    	apply(template *x509.Certificate, signerNotAfter time.Time) error
    }
    
    // PermissiveSigningPolicy is the signing policy historically used by the local
    // signer.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package server
    
    // This file exists to force the desired plugin implementations to be linked into genericapi pkg.
    import (
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/events/v1/generated.proto

    // The default event reporter in "k8s.io/client-go/tools/events/event_broadcaster.go" shows
    // how this struct is updated on heartbeats and can guide customized reporter implementations.
    message EventSeries {
      // count is the number of occurrences in this series up to the last heartbeat time.
      optional int32 count = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    // RequestWaitGroup helps with the accounting of request(s) that are in
    // flight: the caller is expected to invoke Add(1) before executing the
    // request handler and then invoke Done() when the handler finishes.
    // NOTE: implementations must ensure that it is thread-safe
    // when invoked from multiple goroutines.
    type RequestWaitGroup interface {
    	// Add adds delta, which may be negative, similar to sync.WaitGroup.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. pkg/volume/util/hostutil/hostutil.go

    	// GetSELinuxMountContext returns value of -o context=XYZ mount option on
    	// given mount point.
    	GetSELinuxMountContext(pathname string) (string, error)
    }
    
    // Compile-time check to ensure all HostUtil implementations satisfy
    // the Interface.
    var _ HostUtils = &HostUtil{}
    
    // getFileType checks for file/directory/socket and block/character devices.
    func getFileType(pathname string) (FileType, error) {
    	var pathType FileType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    // This file exists to force the desired plugin implementations to be linked.
    // This should probably be part of some configuration fed into the build for a
    // given binary target.
    import (
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. pkg/kubelet/images/types.go

    )
    
    // ImageManager provides an interface to manage the lifecycle of images.
    // Implementations of this interface are expected to deal with pulling (downloading),
    // managing, and deleting container images.
    // Implementations are expected to abstract the underlying runtimes.
    // Implementations are expected to be thread safe.
    type ImageManager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. pkg/volume/util/fsquota/quota.go

    	GetConsumption(path string) (*resource.Quantity, error)
    
    	// Get the quota-based inode consumption for the path
    	GetInodes(path string) (*resource.Quantity, error)
    
    	// Remove the quota from a path
    	// Implementations may assume that any data covered by the
    	// quota has already been removed.
    	ClearQuota(m mount.Interface, path string) error
    }
    
    func enabledQuotasForMonitoring() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      // validity duration so a client must check the delta between the notBefore and
      // and notAfter fields in the issued certificate to determine the actual duration.
      //
      // The v1.22+ in-tree implementations of the well-known Kubernetes signers will
      // honor this field as long as the requested duration is not greater than the
      // maximum duration they will honor per the --cluster-signing-duration CLI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top