Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 145 for Implementation (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_test.go

    	if aead.NonceSize() != 12 {
    		t.Errorf("The underlying Golang crypto size has changed, old version of AES on disk will not be readable unless the AES implementation is changed to hardcode nonce size.")
    	}
    
    	transformerCounterNonce, _, err := NewGCMTransformerWithUniqueKeyUnsafe()
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    */
    
    package v1alpha2
    
    // 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 Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// kep: https://kep.k8s.io/2364
    	// alpha: v1.23
    	//
    	// Configures the Kubelet to use the CRI to populate pod and container stats, instead of supplimenting with stats from cAdvisor.
    	// Requires the CRI implementation supports supplying the required stats.
    	PodAndContainerStatsFromCRI featuregate.Feature = "PodAndContainerStatsFromCRI"
    
    	// owner: @ahg-g
    	// alpha: v1.21
    	// beta: v1.22
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. pkg/volume/hostpath/host_path.go

    func (c *hostPathUnmounter) TearDownAt(dir string) error {
    	return fmt.Errorf("TearDownAt() does not make sense for host paths")
    }
    
    // hostPathProvisioner implements a Provisioner for the HostPath plugin
    // This implementation is meant for testing only and only works in a single node cluster.
    type hostPathProvisioner struct {
    	host     volume.VolumeHost
    	options  volume.VolumeOptions
    	plugin   *hostPathPlugin
    	basePath string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/storage/eviction.go

    				Code:    500,
    			}
    			return nil
    		}
    		if len(pdbs) == 0 {
    			return nil
    		}
    
    		pdb := &pdbs[0]
    		pdbName = pdb.Name
    
    		// IsPodReady is the current implementation of IsHealthy
    		// If the pod is healthy, it should be guarded by the PDB.
    		if !podutil.IsPodReady(pod) {
    			if feature.DefaultFeatureGate.Enabled(features.PDBUnhealthyPodEvictionPolicy) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/fit.go

    	// preScoreStateKey is the key in CycleState to NodeResourcesFit pre-computed data for Scoring.
    	preScoreStateKey = "PreScore" + Name
    )
    
    // nodeResourceStrategyTypeMap maps strategy to scorer implementation
    var nodeResourceStrategyTypeMap = map[config.ScoringStrategyType]scorer{
    	config.LeastAllocated: func(args *config.NodeResourcesFitArgs) *resourceAllocationScorer {
    		resources := args.ScoringStrategy.Resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set.go

    		},
    		eventBroadcaster,
    	)
    }
    
    // NewBaseController is the implementation of NewReplicaSetController with additional injected
    // parameters so that it can also serve as the implementation of NewReplicationController.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/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 Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_pod_control.go

    }
    
    // StatefulPodControl defines the interface that StatefulSetController uses to create, update, and delete Pods,
    // and to update the Status of a StatefulSet. It follows the design paradigms used for PodControl, but its
    // implementation provides for PVC creation, ordered Pod creation, ordered Pod termination, and Pod identity enforcement.
    // Manipulation of objects is provided through objectMgr, which allows the k8s API to be mocked out for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. hack/update-codegen.sh

              // 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top