Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 225 for exp5 (0.04 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

            val valueArgument = unwrapQualified<KtValueArgument> { valueArg, expr ->
                // If `valueArg` is [KtLambdaArgument], its [getArgumentExpression] could be labeled expression (e.g., l@{ ... }).
                // That is not exactly `expr`, which would be [KtLambdaExpression]. So, we need [unwrap] here.
                valueArg.getArgumentExpression()?.unwrap() == expr
            } ?: return null
            val callExpression =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. src/go/types/check.go

    // Instances map is non-nil. The given expr must be an ident, selector, or
    // index (list) expr with ident or selector operand.
    //
    // TODO(rfindley): the expr parameter is fragile. See if we can access the
    // instantiated identifier in some other way.
    func (check *Checker) recordInstance(expr ast.Expr, targs []Type, typ Type) {
    	ident := instantiatedIdent(expr)
    	assert(ident != nil)
    	assert(typ != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

        Value operand = it.value();
        size_t idx = it.index();
    
        tensorflow::XlaExpression expr = GetExprForOperand(operand, op_, idx);
        tensorflow::XlaExpression::Kind kind = expr.kind();
        if (kind == tensorflow::XlaExpression::Kind::kInvalid) return failure();
        expressions.push_back(expr);
    
        if (!tensorflow::DataTypeCanUseMemcpy(expr.dtype())) {
          return op_->emitRemark()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

          status: "True"
          type: Programmed
        - lastTransitionTime: fake
          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: slctr-expr-in-yes
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
      - attachedRoutes: 0
        conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/assignments.go

    	case invalid:
    		return Typ[Invalid]
    	case variable, mapindex:
    		// ok
    	default:
    		if sel, ok := x.expr.(*syntax.SelectorExpr); ok {
    			var op operand
    			check.expr(nil, &op, sel.X)
    			if op.mode == mapindex {
    				check.errorf(&x, UnaddressableFieldAssign, "cannot assign to struct field %s in map", ExprString(x.expr))
    				return Typ[Invalid]
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	}
    	if token.IsIdentifier(m) {
    		cnt[m]++
    		return
    	}
    	// Split up input.
    	name, expr := splitNameExpr(m)
    	if name != "" {
    		cnt[name]++
    	}
    	if expr[0] != '(' || expr[len(expr)-1] != ')' {
    		log.Fatalf("%s: non-compound expr in varCount1: %q", loc, expr)
    	}
    	s := split(expr[1 : len(expr)-1])
    	for _, arg := range s[1:] {
    		varCount1(loc, arg, cnt)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/func.go

    	n.SetOp(ir.ORECOVERFP)
    	n.SetType(types.Types[types.TINTER])
    	n.Args = []ir.Node{Expr(fp)}
    	return n
    }
    
    // tcUnsafeAdd typechecks an OUNSAFEADD node.
    func tcUnsafeAdd(n *ir.BinaryExpr) *ir.BinaryExpr {
    	n.X = AssignConv(Expr(n.X), types.Types[types.TUNSAFEPTR], "argument to unsafe.Add")
    	n.Y = DefaultLit(Expr(n.Y), types.Types[types.TINT])
    	if n.X.Type() == nil || n.Y.Type() == nil {
    		n.SetType(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

        private
        fun binaryExpression(tree: CachingLightTree, node: LighterASTNode): ElementResult<Expr> =
            when (val binaryStatement = binaryStatement(tree, node)) {
                is FailingResult -> binaryStatement
                is Element -> if (binaryStatement.element is Expr) binaryStatement as ElementResult<Expr>
                else tree.unsupported(node, UnsupportedLanguageFeature.UnsupportedOperationInBinaryExpression)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. src/math/big/ftoa.go

    	// e±
    	buf = append(buf, fmt)
    	var exp int64
    	if len(d.mant) > 0 {
    		exp = int64(d.exp) - 1 // -1 because first digit was printed before '.'
    	}
    	if exp < 0 {
    		ch = '-'
    		exp = -exp
    	} else {
    		ch = '+'
    	}
    	buf = append(buf, ch)
    
    	// dd...d
    	if exp < 10 {
    		buf = append(buf, '0') // at least 2 exponent digits
    	}
    	return strconv.AppendInt(buf, exp, 10)
    }
    
    // %f: ddddddd.ddddd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	if recv != nil && len(recv.List) > 0 {
    		expr := recv.List[0].Type
    		if path := lockPath(pass.Pkg, pass.TypesInfo.Types[expr].Type, nil); path != nil {
    			pass.ReportRangef(expr, "%s passes lock by value: %v", name, path)
    		}
    	}
    
    	if typ.Params != nil {
    		for _, field := range typ.Params.List {
    			expr := field.Type
    			if path := lockPath(pass.Pkg, pass.TypesInfo.Types[expr].Type, nil); path != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top