Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for xxeval (0.31 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	XXBLENDVD VS1, VS3, VS7, VS11           // 05000000856119f0
    	XXBLENDVH VS1, VS3, VS7, VS11           // 05000000856119d0
    	XXBLENDVW VS1, VS3, VS7, VS11           // 05000000856119e0
    	XXEVAL VS1, VS2, VS3, $2, VS4           // 05000002888110d0
    	XXGENPCVBM V2, $2, VS3                  // f0621728
    	XXGENPCVDM V2, $2, VS3                  // f062176a
    	XXGENPCVHM V2, $2, VS3                  // f062172a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	"CNTTZDM",
    	"CNTLZDM",
    	"CFUGED",
    	"BRW",
    	"BRH",
    	"BRD",
    	"HASHSTP",
    	"HASHST",
    	"HASHCHKP",
    	"HASHCHK",
    	"XXSPLTIW",
    	"XXSPLTIDP",
    	"XXSPLTI32DX",
    	"XXPERMX",
    	"XXEVAL",
    	"XXBLENDVW",
    	"XXBLENDVH",
    	"XXBLENDVD",
    	"XXBLENDVB",
    	"PSTXVP",
    	"PSTXV",
    	"PSTXSSP",
    	"PSTXSD",
    	"PSTW",
    	"PSTQ",
    	"PSTH",
    	"PSTFS",
    	"PSTFD",
    	"PSTD",
    	"PSTB",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	XVI8GER4SPP:    "xvi8ger4spp",
    	XVTLSBB:        "xvtlsbb",
    	XXBLENDVB:      "xxblendvb",
    	XXBLENDVD:      "xxblendvd",
    	XXBLENDVH:      "xxblendvh",
    	XXBLENDVW:      "xxblendvw",
    	XXEVAL:         "xxeval",
    	XXGENPCVBM:     "xxgenpcvbm",
    	XXGENPCVDM:     "xxgenpcvdm",
    	XXGENPCVHM:     "xxgenpcvhm",
    	XXGENPCVWM:     "xxgenpcvwm",
    	XXMFACC:        "xxmfacc",
    	XXMTACC:        "xxmtacc",
    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. src/go/types/eval.go

    // same as in [CheckExpr]. An error is returned if expr cannot
    // be parsed successfully, or the resulting expr AST cannot be
    // type-checked.
    func Eval(fset *token.FileSet, pkg *Package, pos token.Pos, expr string) (_ TypeAndValue, err error) {
    	// parse expressions
    	node, err := parser.ParseExprFrom(fset, "eval", expr, 0)
    	if err != nil {
    		return TypeAndValue{}, err
    	}
    
    	info := &Info{
    		Types: make(map[ast.Expr]TypeAndValue),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/runtime/map_test.go

    func TestSingleBucketMapStringKeys_NoDupLen(t *testing.T) {
    	testMapLookups(t, map[string]string{
    		"x":                      "x1val",
    		"xx":                     "x2val",
    		"foo":                    "fooval",
    		"xxxx":                   "x4val",
    		"xxxxx":                  "x5val",
    		"xxxxxx":                 "x6val",
    		strings.Repeat("x", 128): "longval",
    	})
    }
    
    func testMapLookups(t *testing.T, m map[string]string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. src/syscall/mkpost.go

    		s = strings.Replace(s, "X__val", "MKPOSTFSIDVAL", 1)
    		s = strings.Replace(s, "X__ifi_pad", "MKPOSTIFIPAD", 1)
    		s = strings.Replace(s, "X_f", "MKPOSTSYSINFOTF", 1)
    
    		// Replace other unwanted fields with blank identifiers.
    		re = regexp.MustCompile("X_[A-Za-z0-9_]*")
    		s = re.ReplaceAllString(s, "_")
    
    		// Restore preserved fields.
    		s = strings.Replace(s, "MKPOSTFSIDVAL", "X__val", 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/fixtures/SimplifiedKotlinScriptEvaluatorTest.kt

        @Test
        fun `can eval script against Project mock`() {
    
            val project = project()
            eval(
                script = """
                    version = "1.0"
                """,
                target = project
            )
            verify(project).version = "1.0"
        }
    
        @Test
        fun `can eval script against Settings mock`() {
    
            val settings = mock<Settings>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/script/conds.go

    func Condition(summary string, eval func(*State) (bool, error)) Cond {
    	return &funcCond{eval: eval, usage: CondUsage{Summary: summary}}
    }
    
    type funcCond struct {
    	eval  func(*State) (bool, error)
    	usage CondUsage
    }
    
    func (c *funcCond) Usage() *CondUsage { return &c.usage }
    
    func (c *funcCond) Eval(s *State, suffix string) (bool, error) {
    	if suffix != "" {
    		return false, ErrUsage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/imports/build.go

    	case *constraint.NotExpr:
    		return !eval(x.X, tags, !prefer)
    	case *constraint.AndExpr:
    		return eval(x.X, tags, prefer) && eval(x.Y, tags, prefer)
    	case *constraint.OrExpr:
    		return eval(x.X, tags, prefer) || eval(x.Y, tags, prefer)
    	}
    	panic(fmt.Sprintf("unexpected constraint expression %T", x))
    }
    
    // Eval is like
    //
    //	x.Eval(func(tag string) bool { return matchTag(tag, tags) })
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractDslTest.kt

    class DslTestFixture(private val testDirectory: File) {
    
        val kotlinDslEvalBaseCacheDir: File by lazy {
            testDirectory.resolve("kotlin-dsl-eval-cache").apply {
                mkdirs()
            }
        }
    
        val kotlinDslEvalBaseTempDir: File by lazy {
            testDirectory.resolve("kotlin-dsl-eval-temp").apply {
                mkdirs()
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top