Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for vsdx (0.18 sec)

  1. pkg/volume/flexvolume/attacher_test.go

    	spec := fakeVolumeSpec()
    	var pod *v1.Pod
    	plugin, _ := testPlugin(t)
    	plugin.runner = fakeRunner(
    		assertDriverCall(t, notSupportedOutput(), waitForAttachCmd, "/dev/sdx",
    			specJSON(plugin, spec, nil)),
    	)
    
    	a, _ := plugin.NewAttacher()
    	a.WaitForAttach(spec, "/dev/sdx", pod, 1*time.Second)
    }
    
    func TestMountDevice(tt *testing.T) {
    	t := harness.For(tt)
    	defer t.Close()
    
    	spec := fakeVolumeSpec()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 03 23:29:42 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/detacher_test.go

    	t := harness.For(tt)
    	defer t.Close()
    
    	plugin, _ := testPlugin(t)
    	plugin.runner = fakeRunner(
    		assertDriverCall(t, notSupportedOutput(), detachCmd,
    			"sdx", "localhost"),
    	)
    
    	d, _ := plugin.NewDetacher()
    	d.Detach("sdx", "localhost")
    }
    
    func TestUnmountDevice(tt *testing.T) {
    	t := harness.For(tt)
    	defer t.Close()
    
    	plugin, rootDir := testPlugin(t)
    	plugin.runner = fakeRunner(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 08 22:44:05 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. pkg/volume/util/device_util_linux.go

    					return "/dev/" + name
    				}
    			}
    		}
    	}
    	return ""
    }
    
    // findDeviceForPath Find the underlying disk for a linked path such as /dev/disk/by-path/XXXX or /dev/mapper/XXXX
    // will return sdX or hdX etc, if /dev/sdX is passed in then sdX will be returned
    func findDeviceForPath(path string, io IoUtil) (string, error) {
    	devicePath, err := io.EvalSymlinks(path)
    	if err != nil {
    		return "", err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/mounter_test.go

    				optionKeyPodName:            "my-pod",
    				optionKeyPodNamespace:       "my-ns",
    				optionKeyPodUID:             "my-uid",
    				optionKeyServiceAccountName: "my-sa",
    			})),
    		assertDriverCall(t, fakeVolumeNameOutput("sdx"), getVolumeNameCmd,
    			specJSON(plugin, spec, nil)),
    	)
    
    	m, _ := plugin.newMounterInternal(spec, pod, mounter, plugin.runner)
    	var mounterArgs volume.MounterArgs
    	m.SetUpAt(rootDir+"/mount-dir", mounterArgs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 17 04:51:24 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  5. src/internal/bytealg/equal_ppc64x.s

    	MOVD	$0, R3		// Assume no-match in case BGELR CR6 returns
    	CMP	R5, $32		// Use overlapping VSX loads for len <= 32
    	BLE	check17_32	// Do a pair of overlapping VSR compares
    	CMP	R5, $64
    	BLE	check33_64	// Hybrid check + overlap compare.
    
    setup64:
    	SRD	$6, R5, R6	// number of 64 byte chunks to compare
    	MOVD	R6, CTR
    	MOVD	$16, R14	// index for VSX loads and stores
    	MOVD	$32, R15
    	MOVD	$48, R16
    	ANDCC	$0x3F, R5, R5	// len%64==0?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	TypeCondRegField         // conditional register field (0-7)
    	TypeFPReg                // floating point register
    	TypeVecReg               // vector register
    	TypeVecSReg              // VSX register
    	TypeVecSpReg             // VSX register pair (even only encoding)
    	TypeMMAReg               // MMA register
    	TypeSpReg                // special register (depends on Op)
    	TypeImmSigned            // signed immediate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    // ex. mapPath symlink: pods/{podUid}}/{DefaultKubeletVolumeDevicesDirName}/{escapeQualifiedPluginName}/{volumeName} -> /dev/sdX
    //
    //	globalMapPath/{pod uuid} bind mount: plugins/kubernetes.io/{PluginName}/{DefaultKubeletVolumeDevicesDirName}/{volumePluginDependentPath}/{pod uuid} -> /dev/sdX
    func (v VolumePathHandler) FindGlobalMapPathUUIDFromPod(pluginDir, mapPath string, podUID types.UID) (string, error) {
    	var globalMapPathUUID string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. pkg/volume/fc/fc_util_test.go

    		return "/dev/sdc", nil
    	case "/dev/disk/by-path/pci-0000:41:00.0-fc-0x500a0981891b8dc5-lun-12":
    		return "/dev/sdl", nil
    	case "/dev/disk/by-path/fc-0x5005076810213b32-lun-25":
    		return "/dev/sdx", nil
    	case "/dev/disk/by-id/scsi-3600508b400105e210000900000490000":
    		return "/dev/sdd", nil
    	}
    	return "", nil
    }
    
    func (handler *fakeIOHandler) WriteFile(filename string, data []byte, perm os.FileMode) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 23 08:36:01 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  9. pkg/volume/flexvolume/driver-call.go

    	Status string `json:"status"`
    	// Reason for success/failure.
    	Message string `json:"message,omitempty"`
    	// Path to the device attached. This field is valid only for attach calls.
    	// ie: /dev/sdx
    	DevicePath string `json:"device,omitempty"`
    	// Cluster wide unique name of the volume.
    	VolumeName string `json:"volumeName,omitempty"`
    	// Represents volume is attached on the node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 02:39:55 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    	F8
    	F9
    	F10
    	F11
    	F12
    	F13
    	F14
    	F15
    	F16
    	F17
    	F18
    	F19
    	F20
    	F21
    	F22
    	F23
    	F24
    	F25
    	F26
    	F27
    	F28
    	F29
    	F30
    	F31
    	V0 // VSX extension, F0 is V0[0:63].
    	V1
    	V2
    	V3
    	V4
    	V5
    	V6
    	V7
    	V8
    	V9
    	V10
    	V11
    	V12
    	V13
    	V14
    	V15
    	V16
    	V17
    	V18
    	V19
    	V20
    	V21
    	V22
    	V23
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
Back to top