Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 248 for mexpr (0.17 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/resolution/DefaultDocumentResolutionContainer.kt

            fun resolveValueFactory(valueFactoryNode: ValueFactoryNode): ValueFactoryResolution {
                val expr = document.languageTreeMappingContainer.data(valueFactoryNode)
                return when (val exprResolution = trace.expressionResolution(expr)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/rangefunc/rewrite.go

    		},
    	}
    	setPos(nif, start)
    	return nif
    }
    
    func (r *rewriter) callPanic(start syntax.Pos, arg syntax.Expr) syntax.Stmt {
    	callPanicExpr := &syntax.CallExpr{
    		Fun:     runtimeSym(r.info, "panicrangestate"),
    		ArgList: []syntax.Expr{arg},
    	}
    	setValueType(callPanicExpr, nil) // no result type
    	return &syntax.ExprStmt{X: callPanicExpr}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

        void testMissingPOMPropertyRefInLargerExpression() throws Exception {
            String expr = "/path/to/someproject-${baseVersion}";
    
            MavenProject project = new MavenProject(new Model());
    
            ExpressionEvaluator ee = createExpressionEvaluator(project, null, new Properties());
    
            Object value = ee.evaluate(expr);
    
            assertEquals(expr, value);
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. src/cmd/fix/typecheck.go

    // tool. (Set to a non-nil hook during testing if cgo is expected to work.)
    var reportCgoError func(err error)
    
    func makeExprList(a []*ast.Ident) []ast.Expr {
    	var b []ast.Expr
    	for _, x := range a {
    		b = append(b, x)
    	}
    	return b
    }
    
    // typecheck1 is the recursive form of typecheck.
    // It is like typecheck but adds to the information in typeof
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/assign.go

    		res.SetType(r.Type)
    		res.SetTypecheck(1)
    
    		nn.Append(ir.NewAssignStmt(base.Pos, l, res))
    	}
    	return nn
    }
    
    // check assign expression list to
    // an expression list. called in
    //
    //	expr-list = expr-list
    func ascompatee(op ir.Op, nl, nr []ir.Node) []ir.Node {
    	// cannot happen: should have been rejected during type checking
    	if len(nl) != len(nr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/range.go

    func rangeConvert(nrange *ir.RangeStmt, dst *types.Type, src, typeWord, srcRType ir.Node) ir.Node {
    	src = typecheck.Expr(src)
    	if dst.Kind() == types.TBLANK || types.Identical(dst, src.Type()) {
    		return src
    	}
    
    	n := ir.NewConvExpr(nrange.Pos(), ir.OCONV, dst, src)
    	n.TypeWord = typeWord
    	n.SrcRType = srcRType
    	return typecheck.Expr(n)
    }
    
    // isMapClear checks if n is of the form:
    //
    //	for k := range m {
    //		delete(m, k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/builtin.go

    		appendWalkStmt(init, ir.NewAssignStmt(base.Pos, var_, nil))  // zero temp
    		r := ir.NewSliceExpr(base.Pos, ir.OSLICE, var_, nil, l, nil) // arr[:l]
    		// The conv is necessary in case n.Type is named.
    		return walkExpr(typecheck.Expr(typecheck.Conv(r, n.Type())), init)
    	}
    
    	// n escapes; set up a call to makeslice.
    	// When len and cap can fit into int, use makeslice instead of
    	// makeslice64, which is faster and shorter on 32 bit platforms.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    // see in assembly code are simple, but for the record:
    //
    // 1) Evaluation uses uint64; the old one used int64.
    // 2) Precedence uses Go rules not C rules.
    
    // expr = term | term ('+' | '-' | '|' | '^') term.
    func (p *Parser) expr() uint64 {
    	value := p.term()
    	for {
    		switch p.peek() {
    		case '+':
    			p.next()
    			value += p.term()
    		case '-':
    			p.next()
    			value -= p.term()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/branches.go

    	b := &block{parent: parent, start: start, lstmt: lstmt}
    
    	var varPos Pos
    	var varName Expr
    	var fwdGotos, badGotos []*BranchStmt
    
    	recordVarDecl := func(pos Pos, name Expr) {
    		varPos = pos
    		varName = name
    		// Any existing forward goto jumping over the variable
    		// declaration is invalid. The goto may still jump out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  10. internal/s3select/sql/parser.go

    }
    
    // CastFunc represents CAST sql function
    type CastFunc struct {
    	Expr     *Expression `parser:" \"CAST\" \"(\" @@ "`
    	CastType string      `parser:" \"AS\" @(\"BOOL\" | \"INT\" | \"INTEGER\" | \"STRING\" | \"FLOAT\" | \"DECIMAL\" | \"NUMERIC\" | \"TIMESTAMP\") \")\" "`
    }
    
    // SubstringFunc represents SUBSTRING sql function
    type SubstringFunc struct {
    	Expr *PrimaryTerm `parser:" \"SUBSTRING\" \"(\" @@ "`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top