Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for V2 (0.02 sec)

  1. src/cmd/go/internal/modfetch/codehost/git_test.go

    				Tags:    []string{"v2.0.1", "v2.3"},
    			},
    		},
    		{
    			repo: gitrepo1,
    			rev:  "v2.3", // badly-named tag (we only respect full semver v2.3.0)
    			info: &RevInfo{
    				Name:    "76a00fb249b7f93091bc2c89a789dab1fc1bc26f",
    				Short:   "76a00fb249b7",
    				Version: "v2.3",
    				Time:    time.Date(2018, 4, 17, 19, 45, 48, 0, time.UTC),
    				Tags:    []string{"v2.0.1", "v2.3"},
    			},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/mvs/mvs.go

    	// Max returns the maximum of v1 and v2 (it returns either v1 or v2)
    	// in the module with path p.
    	//
    	// For all versions v, Max(v, "none") must be v,
    	// and for the target passed as the first argument to MVS functions,
    	// Max(target, v) must be target.
    	//
    	// Note that v1 < v2 can be written Max(v1, v2) != v1
    	// and similarly v1 <= v2 can be written Max(v1, v2) == v2.
    	Max(p, v1, v2 string) string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritedec.go

    		}
    		v.reset(OpComplexMake)
    		v0 := b.NewValue0(v.Pos, OpLoad, typ.Float32)
    		v0.AddArg2(ptr, mem)
    		v1 := b.NewValue0(v.Pos, OpLoad, typ.Float32)
    		v2 := b.NewValue0(v.Pos, OpOffPtr, typ.Float32Ptr)
    		v2.AuxInt = int64ToAuxInt(4)
    		v2.AddArg(ptr)
    		v1.AddArg2(v2, mem)
    		v.AddArg2(v0, v1)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: t.IsComplex() && t.Size() == 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/range.go

    	//	hn, hp: hidden len, pointer
    	//	hb: hidden bool
    	//	a, v1, v2: not hidden aggregate, val 1, 2
    
    	a := nrange.X
    	t := a.Type()
    	lno := ir.SetPos(a)
    
    	v1, v2 := nrange.Key, nrange.Value
    
    	if ir.IsBlank(v2) {
    		v2 = nil
    	}
    
    	if ir.IsBlank(v1) && v2 == nil {
    		v1 = nil
    	}
    
    	if v1 == nil && v2 != nil {
    		base.Fatalf("walkRange: v2 != nil while v1 == nil")
    	}
    
    	var body []ir.Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    sets the feature build tags for all previous levels as well.
    For example, GOAMD64=v2 sets the amd64.v1 and amd64.v2 feature flags.
    This ensures that code making use of v2 features continues to compile
    when, say, GOAMD64=v4 is introduced.
    Code handling the absence of a particular feature level
    should use a negation:
    
    	//go:build !amd64.v2
    
    To keep a file from being considered for any build:
    
    	//go:build ignore
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/operand_test.go

    	{"VS56", "VS56"},
    	{"VS57", "VS57"},
    	{"VS58", "VS58"},
    	{"VS59", "VS59"},
    	{"VS60", "VS60"},
    	{"VS61", "VS61"},
    	{"VS62", "VS62"},
    	{"VS63", "VS63"},
    	{"V0", "V0"},
    	{"V1", "V1"},
    	{"V2", "V2"},
    	{"V3", "V3"},
    	{"V4", "V4"},
    	{"V5", "V5"},
    	{"V6", "V6"},
    	{"V7", "V7"},
    	{"V8", "V8"},
    	{"V9", "V9"},
    	{"V10", "V10"},
    	{"V11", "V11"},
    	{"V12", "V12"},
    	{"V13", "V13"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/sccp.go

    	}
    	if a.tag != b.tag {
    		return false
    	}
    	if a.tag == constant {
    		// The same content of const value may be different, we should
    		// compare with auxInt instead
    		v1 := a.val
    		v2 := b.val
    		if v1.Op == v2.Op && v1.AuxInt == v2.AuxInt {
    			return true
    		} else {
    			return false
    		}
    	}
    	return true
    }
    
    // possibleConst checks if Value can be folded to const. For those Values that can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/coderepo.go

    	//	path = nanomsg.org/go/mangos/v2
    	//	codeRoot = nanomsg.org/go/mangos/v2
    	//	pathPrefix = nanomsg.org/go/mangos
    	//	pathMajor = /v2
    	//	pseudoMajor = v2
    	//
    	// The other is similar: for gopkg.in only, the major version is encoded
    	// with a dot rather than a slash, and thus can't be in a subdirectory.
    	//	path = gopkg.in/yaml.v2
    	//	codeRoot = gopkg.in/yaml.v2
    	//	pathPrefix = gopkg.in/yaml
    	//	pathMajor = .v2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/query.go

    					// errors for modules with shorter paths.
    
    					// golang.org/issue/34383 is a special case of this: if we have
    					// already found example.com/foo/v2@v2.0.0 with a matching go.mod
    					// file, ignore the error from example.com/foo@v2.0.0.
    				} else {
    					err = r.err
    				}
    			}
    		}
    	}
    
    	// TODO(#26232): If len(found) == 0 and some of the errors are 4xx HTTP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    //			reg = REG_[US]XT[BHWX] + register + shift amount
    //			offset = ((reg&31) << 16) | (exttype << 13) | (amount<<10)
    //
    //	reg.<T>
    //		Register arrangement for ARM64 SIMD register
    //		e.g.: V1.S4, V2.S2, V7.D2, V2.H4, V6.B16
    //		Encoding:
    //			type = TYPE_REG
    //			reg = REG_ARNG + register + arrangement
    //
    //	reg.<T>[index]
    //		Register element for ARM64
    //		Encoding:
    //			type = TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top