Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 156 for ecsi (1.09 sec)

  1. pkg/volume/csi/csi_client_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package csi
    
    import (
    	"context"
    	"errors"
    	"io"
    	"os"
    	"path/filepath"
    	"reflect"
    	"strconv"
    	"testing"
    
    	csipbv1 "github.com/container-storage-interface/spec/lib/go/csi"
    	"github.com/stretchr/testify/assert"
    
    	api "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csi"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/test/utils/ktesting"
    )
    
    const (
    	intreePDUniqueNamePrefix = "kubernetes.io/gce-pd/"
    	csiPDUniqueNamePrefix    = "kubernetes.io/csi/pd.csi.storage.gke.io^projects/UNSPECIFIED/zones/UNSPECIFIED/disks/"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. docs/yo/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png)
    
    ## Àpẹẹrẹ ìgbésókè mìíràn
    
    Ní báyìí ṣe àtúnṣe fáìlì `main.py` láti gba kókó èsì láti inú ìbéèrè `PUT`.
    
    Ní báyìí, ṣe ìkéde kókó èsì API nínú kóòdù rẹ nipa lílo àwọn ìtọ́kasí àmì irúfẹ́ Python, ọpẹ́ pàtàkìsi sí Pydantic.
    
    ```Python hl_lines="4  9-12  25-27"
    from typing import Union
    
    from fastapi import FastAPI
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	return nil
    }
    
    // Return the volume plugin name, together with the CSI driver name if it's a CSI volume.
    func getVolumePluginNameWithDriver(plugin volume.VolumePlugin, spec *volume.Spec) string {
    	pluginName := plugin.GetPluginName()
    	if pluginName != csi.CSIPluginName {
    		return pluginName
    	}
    
    	// It's a CSI volume
    	driverName, err := csi.GetCSIDriverName(spec)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	pvcQueue workqueue.TypedRateLimitingInterface[string]
    
    	// csiMigratedPluginManager detects in-tree plugins that have been migrated to CSI
    	csiMigratedPluginManager csimigration.PluginManager
    
    	// intreeToCSITranslator translates from in-tree volume specs to CSI
    	intreeToCSITranslator csimigration.InTreeToCSITranslator
    }
    
    func (adc *attachDetachController) Run(ctx context.Context) {
    	defer runtime.HandleCrash()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/expand/expand_controller.go

    	migratable, err := expc.csiMigratedPluginManager.IsMigratable(volumeSpec)
    	if err != nil {
    		logger.V(4).Info("Failed to check CSI migration status for PVC with error", "pvcKey", key, "err", err)
    		return nil
    	}
    	// handle CSI migration scenarios before invoking FindExpandablePluginBySpec for in-tree
    	if migratable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/provision_test.go

    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// Provision a volume with a data source will proceed
    			// for CSI plugins
    			"11-26 - csi with data source",
    			novolumes,
    			novolumes,
    			claimWithAnnotation(volume.AnnStorageProvisioner, "mydriver.csi.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_getters.go

    		}
    		unescapePluginName := utilstrings.UnescapeQualifiedName(volumePluginName)
    
    		if unescapePluginName != csi.CSIPluginName {
    			for _, volumeDir := range volumeDirs {
    				volumes = append(volumes, filepath.Join(volumePluginPath, volumeDir))
    			}
    		} else {
    			// For CSI volumes, the mounted volume path has an extra sub path "/mount", so also add it
    			// to the list if the mounted path exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    			logger.V(5).Info("Could not get a CSINode object for the node", "node", klog.KObj(node), "err", err)
    		}
    	}
    
    	// if a plugin has been migrated to a CSI driver, defer to the CSI predicate
    	if pl.filter.IsMigrated(csiNode) {
    		return nil
    	}
    
    	// count unique volumes
    	existingVolumes := sets.New[string]()
    	for _, existingPod := range nodeInfo.Pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	R10W: "R10W",
    	R11W: "R11W",
    	R12W: "R12W",
    	R13W: "R13W",
    	R14W: "R14W",
    	R15W: "R15W",
    	EAX:  "EAX",
    	ECX:  "ECX",
    	EDX:  "EDX",
    	EBX:  "EBX",
    	ESP:  "ESP",
    	EBP:  "EBP",
    	ESI:  "ESI",
    	EDI:  "EDI",
    	R8L:  "R8L",
    	R9L:  "R9L",
    	R10L: "R10L",
    	R11L: "R11L",
    	R12L: "R12L",
    	R13L: "R13L",
    	R14L: "R14L",
    	R15L: "R15L",
    	RAX:  "RAX",
    	RCX:  "RCX",
    	RDX:  "RDX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top