Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for vsdx (0.04 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. 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)
  3. 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)
  4. 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)
  5. src/path/filepath/path_windows_test.go

    	if !strings.Contains(string(output), " /J ") {
    		t.Skip("skipping test because mklink command does not support junctions")
    	}
    
    	tmpdir := tempDirCanonical(t)
    	vhd := filepath.Join(tmpdir, "Test.vhdx")
    	output = createMountPartition(t, vhd, "Write-Host $vol.Path -NoNewline")
    	vol := string(output)
    
    	dirlink := filepath.Join(tmpdir, "dirlink")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/time/format_test.go

    	{"GMT+", 3, true},
    	{"GMT+3", 5, true},
    	{"GMT+a", 3, true},
    	{"GMT+3a", 5, true},
    	{"GMT-5 hi there", 5, true},
    	{"GMT-51 hi there", 3, true},
    	{"ChST hi there", 4, true},
    	{"MeST hi there", 4, true},
    	{"MSDx", 3, true},
    	{"MSDY", 0, false}, // four letters must end in T.
    	{"ESAST hi", 5, true},
    	{"ESASTT hi", 0, false}, // run of upper-case letters too long.
    	{"ESATY hi", 0, false},  // five letters must end in T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top