Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/go/parser/resolver.go

    	}
    }
    
    func (r *resolver) walkExprs(list []ast.Expr) {
    	for _, node := range list {
    		ast.Walk(r, node)
    	}
    }
    
    func (r *resolver) walkLHS(list []ast.Expr) {
    	for _, expr := range list {
    		expr := ast.Unparen(expr)
    		if _, ok := expr.(*ast.Ident); !ok && expr != nil {
    			ast.Walk(r, expr)
    		}
    	}
    }
    
    func (r *resolver) walkStmts(list []ast.Stmt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  2. src/strconv/atof.go

    		if exp > 22 {
    			f *= float64pow10[exp-22]
    			exp = 22
    		}
    		if f > 1e15 || f < -1e15 {
    			// the exponent was really too large.
    			return
    		}
    		return f * float64pow10[exp], true
    	case exp < 0 && exp >= -22: // int / 10^k
    		return f / float64pow10[-exp], true
    	}
    	return
    }
    
    // If possible to compute mantissa*10^exp to 32-bit float f exactly,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    		if !ok {
    			return stmt, labeled
    		}
    		labeled = true
    		stmt = labelStmt.Stmt
    	}
    }
    
    // isMethodCall reports whether expr is a method call of
    // <pkgPath>.<typeName>.<method>.
    func isMethodCall(info *types.Info, expr ast.Expr, pkgPath, typeName, method string) bool {
    	call, ok := expr.(*ast.CallExpr)
    	if !ok {
    		return false
    	}
    
    	// Check that we are calling a method <method>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/go/types/assignments.go

    	case invalid:
    		return Typ[Invalid]
    	case variable, mapindex:
    		// ok
    	default:
    		if sel, ok := x.expr.(*ast.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: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/index.go

    	// check indices
    	var ind [3]int64
    	for i, expr := range e.Index {
    		x := int64(-1)
    		switch {
    		case expr != nil:
    			// The "capacity" is only known statically for strings, arrays,
    			// and pointers to arrays, and it is the same as the length for
    			// those types.
    			max := int64(-1)
    			if length >= 0 {
    				max = length + 1
    			}
    			if _, v := check.index(expr, max); v >= 0 {
    				x = v
    			}
    		case i == 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/walk/compare.go

    		andor = ir.OOROR
    	}
    	var expr ir.Node
    	comp := func(el, er ir.Node) {
    		a := ir.NewBinaryExpr(base.Pos, n.Op(), el, er)
    		if expr == nil {
    			expr = a
    		} else {
    			expr = ir.NewLogicalExpr(base.Pos, andor, expr, a)
    		}
    	}
    	and := func(cond ir.Node) {
    		if expr == nil {
    			expr = cond
    		} else {
    			expr = ir.NewLogicalExpr(base.Pos, andor, expr, cond)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. 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)
Back to top