Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 3,458 for Types (0.14 sec)

  1. src/cmd/compile/internal/ssa/cse_test.go

    			Valu("raddrdef", OpVarDef, types.TypeMem, 0, a, "start"),
    			Valu("r6", OpAdd64, c.config.Types.Int64, 0, nil, "r4", "r5"),
    			Valu("r3", OpAdd64, c.config.Types.Int64, 0, nil, "arg1", "arg2"),
    			Valu("r5", OpAdd64, c.config.Types.Int64, 0, nil, "r2", "r3"),
    			Valu("r10", OpAdd64, c.config.Types.Int64, 0, nil, "r6", "r9"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/writebarrier_test.go

    	// See issue #19067.
    	c := testConfig(t)
    	ptrType := c.config.Types.BytePtr
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("sp", OpSP, c.config.Types.Uintptr, 0, nil),
    			Goto("loop")),
    		Bloc("loop",
    			Valu("phi", OpPhi, types.TypeMem, 0, nil, "start", "wb"),
    			Valu("v", OpConstNil, ptrType, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/types/FirIdeNormalAnalysisLibraryBinaryModuleAbbreviatedTypeTestGenerated.java

      }
    
      @Test
      @TestMetadata("ListAlias.kt")
      public void testListAlias() {
        runTest("analysis/analysis-api/testData/types/abbreviatedType/ListAlias.kt");
      }
    
      @Test
      @TestMetadata("ListAliasFromLibrary.kt")
      public void testListAliasFromLibrary() {
        runTest("analysis/analysis-api/testData/types/abbreviatedType/ListAliasFromLibrary.kt");
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 12:27:48 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/shift_test.go

    		left, right Op
    		typ         *types.Type
    	}{
    		// unsigned
    		{56, OpLsh64x64, OpRsh64Ux64, c.config.Types.UInt64},
    		{48, OpLsh64x64, OpRsh64Ux64, c.config.Types.UInt64},
    		{32, OpLsh64x64, OpRsh64Ux64, c.config.Types.UInt64},
    		{24, OpLsh32x64, OpRsh32Ux64, c.config.Types.UInt32},
    		{16, OpLsh32x64, OpRsh32Ux64, c.config.Types.UInt32},
    		{8, OpLsh16x64, OpRsh16Ux64, c.config.Types.UInt16},
    		// signed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. test/const6.go

    	c7 = c1 == c2 // ERROR "mismatched types|incompatible types"
    	c8 = c2 == c6 // ERROR "mismatched types|incompatible types"
    	c9 = c1 == c6 // ERROR "mismatched types|incompatible types"
    	_ = c2 && (x < y)
    	_ = c2 && (1 < 2)
    	_ = c1 && c2 // ERROR "mismatched types|incompatible types"
    	_ = c2 && c6 // ERROR "mismatched types|incompatible types"
    	_ = c1 && c6 // ERROR "mismatched types|incompatible types"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 834 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/fuse_test.go

    package ssa
    
    import (
    	"cmd/compile/internal/types"
    	"fmt"
    	"strconv"
    	"testing"
    )
    
    func TestFuseEliminatesOneBranch(t *testing.T) {
    	c := testConfig(t)
    	ptrType := c.config.Types.BytePtr
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Goto("checkPtr")),
    		Bloc("checkPtr",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    	return Unalias(alias)
    }
    
    // Unalias is a wrapper of types.Unalias.
    func Unalias(t types.Type) types.Type { return types.Unalias(t) }
    
    // newAlias is an internal alias around types.NewAlias.
    // Direct usage is discouraged as the moment.
    // Try to use NewAlias instead.
    func newAlias(tname *types.TypeName, rhs types.Type) *Alias {
    	a := types.NewAlias(tname, rhs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/regex.go

    	str, ok := strVal.Value().(string)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(strVal)
    	}
    	regex, ok := regexVal.Value().(string)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(regexVal)
    	}
    	re, err := regexp.Compile(regex)
    	if err != nil {
    		return types.NewErr("Illegal regex: %v", err.Error())
    	}
    	result := re.FindString(str)
    	return types.String(result)
    }
    
    func findAll(args ...ref.Val) ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    func indexOf(list ref.Val, item ref.Val) ref.Val {
    	lister, ok := list.(traits.Lister)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(list)
    	}
    	sz := lister.Size().(types.Int)
    	for i := types.Int(0); i < sz; i++ {
    		if lister.Get(types.Int(i)).Equal(item) == types.True {
    			return types.Int(i)
    		}
    	}
    	return types.Int(-1)
    }
    
    func lastIndexOf(list ref.Val, item ref.Val) ref.Val {
    	lister, ok := list.(traits.Lister)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    func importMap(imports []*types.Package) map[string]*types.Package {
    	objects := make(map[types.Object]bool)
    	typs := make(map[types.Type]bool) // Named and TypeParam
    	packages := make(map[string]*types.Package)
    
    	var addObj func(obj types.Object)
    	var addType func(T types.Type)
    
    	addObj = func(obj types.Object) {
    		if !objects[obj] {
    			objects[obj] = true
    			addType(obj.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top