Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for ym (0.03 sec)

  1. tests/integration/pilot/validation_test.go

    						t.NewSubTest(string(d) + "-" + fmt.Sprint(valid)).Run(func(t framework.TestContext) {
    							ym, err := d.load()
    							if err != nil {
    								t.Fatalf("Unable to load test data: %v", err)
    							}
    
    							if !valid {
    								ym, err = yml.ApplyAnnotation(ym, constants.AlwaysReject, "true")
    								if err != nil {
    									t.Fatal(err)
    								}
    							}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/math/fma.go

    	if bz&uvinf == uvinf {
    		return z
    	}
    
    	// Inputs are (sub)normal.
    	// Split x, y, z into sign, exponent, mantissa.
    	xs, xe, xm := split(bx)
    	ys, ye, ym := split(by)
    	zs, ze, zm := split(bz)
    
    	// Compute product p = x*y as sign, exponent, two-word mantissa.
    	// Start with exponent. "is normal" bit isn't subtracted yet.
    	pe := xe + ye - bias + 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm_test.go

    		{regListAddr(REG_Y4, REG_Y7), YyrEvexMulti4},
    		{regListAddr(REG_Z0, REG_Z3), YzrMulti4},
    		{regListAddr(REG_Z4, REG_Z7), YzrMulti4},
    
    		{memAddr(REG_AL, REG_NONE), Ym},
    		{memAddr(REG_AL, REG_SI), Ym},
    		{memAddr(REG_SI, REG_CX), Ym},
    		{memAddr(REG_DI, REG_X0), Yxvm},
    		{memAddr(REG_DI, REG_X7), Yxvm},
    		{memAddr(REG_DI, REG_Y0), Yyvm},
    		{memAddr(REG_DI, REG_Y7), Yyvm},
    		{memAddr(REG_DI, REG_Z0), Yzvm},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    var yfmvd = []ytab{
    	{Zm_o, 2, argList{Ym, Yf0}},
    	{Zo_m, 2, argList{Yf0, Ym}},
    	{Zm_o, 2, argList{Yrf, Yf0}},
    	{Zo_m, 2, argList{Yf0, Yrf}},
    }
    
    var yfmvdp = []ytab{
    	{Zo_m, 2, argList{Yf0, Ym}},
    	{Zo_m, 2, argList{Yf0, Yrf}},
    }
    
    var yfmvf = []ytab{
    	{Zm_o, 2, argList{Ym, Yf0}},
    	{Zo_m, 2, argList{Yf0, Ym}},
    }
    
    var yfmvx = []ytab{
    	{Zm_o, 2, argList{Ym, Yf0}},
    }
    
    var yfmvp = []ytab{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/go/types/unify.go

    			// Collect the ymethods in a map for quick lookup.
    			ymap := make(map[string]*Func, len(ymethods))
    			for _, ym := range ymethods {
    				ymap[ym.Id()] = ym
    			}
    			// All xmethods must exist in ymethods and corresponding signatures must unify.
    			for _, xm := range xmethods {
    				if ym := ymap[xm.Id()]; ym == nil || !u.nify(xm.typ, ym.typ, exact, p) {
    					return false
    				}
    			}
    			return true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    			// Collect the ymethods in a map for quick lookup.
    			ymap := make(map[string]*Func, len(ymethods))
    			for _, ym := range ymethods {
    				ymap[ym.Id()] = ym
    			}
    			// All xmethods must exist in ymethods and corresponding signatures must unify.
    			for _, xm := range xmethods {
    				if ym := ymap[xm.Id()]; ym == nil || !u.nify(xm.typ, ym.typ, exact, p) {
    					return false
    				}
    			}
    			return true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate.go

    	for k, v := range installTree {
    		componentName := string(k)
    		// In cases (like gateways) where multiple instances can exist, concatenate the manifests and apply as one.
    		ym := strings.Join(manifests[k], helm.YAMLSeparator)
    		l.LogAndPrintf("Rendering: %s", componentName)
    		dirName := filepath.Join(outputDir, componentName)
    		if !dryRun {
    			if err := os.MkdirAll(dirName, os.ModePerm); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/avx_optabs.go

    	{zcase: Zvex_r_v_rm, zoffset: 2, args: argList{Yxr, Ym}},
    	{zcase: Zvex_r_v_rm, zoffset: 2, args: argList{Yyr, Ym}},
    	{zcase: Zevex_r_v_rm, zoffset: 3, args: argList{YxrEvex, Ym}},
    	{zcase: Zevex_r_v_rm, zoffset: 3, args: argList{YyrEvex, Ym}},
    	{zcase: Zevex_r_v_rm, zoffset: 3, args: argList{Yzr, Ym}},
    }
    
    var _yvmovntdqa = []ytab{
    	{zcase: Zvex_rm_v_r, zoffset: 2, args: argList{Ym, Yxr}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
  9. operator/pkg/object/objects.go

    	for i, item := range os {
    		if i != 0 {
    			if _, err := b.WriteString("\n\n"); err != nil {
    				return "", err
    			}
    		}
    		ym, err := item.YAML()
    		if err != nil {
    			return "", fmt.Errorf("error building yaml: %v", err)
    		}
    		if _, err := b.Write(ym); err != nil {
    			return "", err
    		}
    		if _, err := b.WriteString(YAMLSeparator); err != nil {
    			return "", err
    		}
    
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  10. src/crypto/tls/testdata/Server-TLSv12-IssueTicketPreDisable

    000000e0  00 00 00 00 00 00 00 00  8f 8d a7 06 a7 d6 52 5a  |..............RZ|
    000000f0  b9 66 5e ef e3 8d 1d 91  d0 6d 30 29 92 4e 6a 81  |.f^......m0).Nj.|
    00000100  f4 77 97 06 de a8 c8 d1  4c 6b 15 07 1f 9b 59 6d  |.w......Lk....Ym|
    00000110  cb 4f 23 20 58 aa 22 21  15 03 03 00 30 00 00 00  |.O# X."!....0...|
    00000120  00 00 00 00 00 00 00 00  00 00 00 00 00 06 55 3d  |..............U=|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top