Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for vsdx (0.1 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    	REG_VS62
    	REG_VS63
    
    	REG_CR0
    	REG_CR1
    	REG_CR2
    	REG_CR3
    	REG_CR4
    	REG_CR5
    	REG_CR6
    	REG_CR7
    
    	// MMA accumulator registers, these shadow VSR 0-31
    	// e.g MMAx shadows VSRx*4-VSRx*4+3 or
    	//     MMA0 shadows VSR0-VSR3
    	REG_A0
    	REG_A1
    	REG_A2
    	REG_A3
    	REG_A4
    	REG_A5
    	REG_A6
    	REG_A7
    
    	REG_MSR
    	REG_FPSCR
    	REG_CR
    
    	REG_SPECIAL = REG_CR0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_VecSReg_31_31_6_10, ap_ImmUnsigned_16_20}},
    	{LXVP, 0xfc00000f00000000, 0x1800000000000000, 0x0, // Load VSX Vector Paired DQ-form (lxvp XTp,DQ(RA))
    		[6]*argField{ap_VecSpReg_10_10_6_9, ap_Offset_16_27_shift4, ap_Reg_11_15}},
    	{LXVPX, 0xfc0007fe00000000, 0x7c00029a00000000, 0x100000000, // Load VSX Vector Paired Indexed X-form (lxvpx XTp,RA,RB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. 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)
  5. operator/pkg/util/reflect_test.go

    			okValues: []any{testInt, &testInt},
    		},
    	}
    
    	for _, tt := range tests {
    		for vidx, v := range allValues {
    			if got, want := tt.function(reflect.ValueOf(v)), isInListOfInterface(tt.okValues, v); got != want {
    				t.Errorf("%s with %s (#%d): got: %t, want: %t", tt.desc, reflect.TypeOf(v), vidx, got, want)
    			}
    		}
    	}
    }
    
    func TestValuesAreSameType(t *testing.T) {
    	type EnumType int64
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  6. cmd/admin-handlers_test.go

    	// Test all combinations!
    	for pIdx, params := range qParamsArr {
    		for vIdx, vars := range varsArr {
    			_, err := extractHealInitParams(vars, params, bytes.NewReader([]byte(body)))
    			isErrCase := false
    			if pIdx < 4 || vIdx < 1 {
    				isErrCase = true
    			}
    
    			if err != ErrNone && !isErrCase {
    				t.Errorf("Got unexpected error: %v %v %v", pIdx, vIdx, err)
    			} else if err == ErrNone && isErrCase {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	/* VSX select */
    	{as: AXXSEL, a1: C_VSREG, a2: C_VSREG, a3: C_VSREG, a6: C_VSREG, type_: 91, size: 4}, /* vsx select, xx4-form */
    
    	/* VSX merge */
    	{as: AXXMRGHW, a1: C_VSREG, a2: C_VSREG, a6: C_VSREG, type_: 90, size: 4}, /* vsx merge, xx3-form */
    
    	/* VSX splat */
    	{as: AXXSPLTW, a1: C_VSREG, a3: C_U15CON, a6: C_VSREG, type_: 89, size: 4}, /* vsx splat, xx2-form */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. 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)
  9. pkg/volume/fc/fc_util.go

    		klog.Warningf("Failed to flush device %s: %s\n%s", deviceName, err, string(out))
    	}
    	klog.V(4).Infof("Flushed device %s", deviceName)
    }
    
    // Removes a scsi device based upon /dev/sdX name
    func removeFromScsiSubsystem(deviceName string, io ioHandler) {
    	fileName := "/sys/block/" + deviceName + "/device/delete"
    	klog.V(4).Infof("fc: remove device from scsi-subsystem: path: %s", fileName)
    	data := []byte("1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice.go

    				addVirtualService(c, wnsImportedHosts)
    			}
    		}
    	}
    
    	n := types.NamespacedName{Namespace: configNamespace, Name: constants.IstioMeshGateway}
    	loopAndAdd(vsidx.privateByNamespaceAndGateway[n])
    	loopAndAdd(vsidx.exportedToNamespaceByGateway[n])
    	loopAndAdd(vsidx.publicByGateway[constants.IstioMeshGateway])
    
    	return importedVirtualServices
    }
    
    func resolveVirtualServiceShortnames(rule *networking.VirtualService, meta config.Meta) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top