Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 356 for exp5 (0.09 sec)

  1. src/go/types/typexpr.go

    // The type must not be an (uninstantiated) generic type.
    func (check *Checker) typ(e ast.Expr) Type {
    	return check.definedType(e, nil)
    }
    
    // varType type-checks the type expression e and returns its type, or Typ[Invalid].
    // The type must not be an (uninstantiated) generic type and it must not be a
    // constraint interface.
    func (check *Checker) varType(e ast.Expr) Type {
    	typ := check.definedType(e, nil)
    	check.validVarType(e, typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/math/erf.go

    //
    //      Note1:
    //         To compute exp(-x*x-0.5625+R/S), let s be a single
    //         precision number and s := x; then
    //              -x*x = -s*s + (s-x)*(s+x)
    //              exp(-x*x-0.5626+R/S) =
    //                      exp(-s*s-0.5625)*exp((s-x)*(s+x)+R/S);
    //      Note2:
    //         Here 4 and 5 make use of the asymptotic series
    //                        exp(-x*x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

                    appendNextIndented("expr = ")
                    recurseDeeper(current.expr)
                    appendLine()
                    appendIndented(")")
                }
    
                is FunctionArgument.Positional -> {
                    append("FunctionArgument.Positional [${source()}] (\n")
                    appendNextIndented("expr = ")
                    recurseDeeper(current.expr)
                    appendLine()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/math/big/rat_test.go

    			for wid := uint64(0); wid < 30; wid += winc {
    				b := 1<<wid + a
    				if sign == '-' {
    					b = -b
    				}
    				for exp := -150; exp < 150; exp += einc {
    					num, den := NewInt(b), NewInt(1)
    					if exp > 0 {
    						num.Lsh(num, uint(exp))
    					} else {
    						den.Lsh(den, uint(-exp))
    					}
    					r := new(Rat).SetFrac(num, den)
    					f, _ := r.Float32()
    
    					if !checkIsBestApprox32(t, f, r) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

            var representativePsi: KtElement? = null
            val flattenedVarargs = buildList {
                for (expr in this@convertVarargsExpression) {
                    val converted = expr.convertConstantExpression(builder) ?: continue
    
                    if ((expr is FirSpreadArgumentExpression || expr is FirNamedArgumentExpression) && converted is KaArrayAnnotationValue) {
                        addAll(converted.values)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. .teamcity/mvnw

    fi
    
    if [ -z "$M2_HOME" ] ; then
      ## resolve links - $0 may be a link to maven's home
      PRG="$0"
    
      # need this for relative symlinks
      while [ -h "$PRG" ] ; do
        ls=`ls -ld "$PRG"`
        link=`expr "$ls" : '.*-> \(.*\)$'`
        if expr "$link" : '/.*' > /dev/null; then
          PRG="$link"
        else
          PRG="`dirname "$PRG"`/$link"
        fi
      done
    
      saveddir=`pwd`
    
      M2_HOME=`dirname "$PRG"`/..
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  7. pkg/kubelet/token/token_manager_test.go

    	start := time.Now()
    	cases := []struct {
    		now, exp      time.Time
    		expectRefresh bool
    		requestTweaks func(*authenticationv1.TokenRequest)
    	}{
    		{
    			now:           start.Add(10 * time.Minute),
    			exp:           start.Add(60 * time.Minute),
    			expectRefresh: false,
    		},
    		{
    			now:           start.Add(50 * time.Minute),
    			exp:           start.Add(60 * time.Minute),
    			expectRefresh: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  8. src/strconv/ftoaryu.go

    }
    
    // ryuFtoaShortest formats mant*2^exp with prec decimal digits.
    func ryuFtoaShortest(d *decimalSlice, mant uint64, exp int, flt *floatInfo) {
    	if mant == 0 {
    		d.nd, d.dp = 0, 0
    		return
    	}
    	// If input is an exact integer with fewer bits than the mantissa,
    	// the previous and next integer are not admissible representations.
    	if exp <= 0 && bits.TrailingZeros64(mant) >= -exp {
    		mant >>= uint(-exp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

    import com.github.javaparser.ast.body.TypeDeclaration;
    import com.github.javaparser.ast.comments.Comment;
    import com.github.javaparser.ast.expr.AnnotationExpr;
    import com.github.javaparser.ast.expr.Expression;
    import com.github.javaparser.ast.expr.LiteralStringValueExpr;
    import com.github.javaparser.ast.expr.SingleMemberAnnotationExpr;
    import com.github.javaparser.ast.nodeTypes.NodeWithAnnotations;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. pkg/serviceaccount/claims_test.go

    		sec       *core.Secret
    		node      *core.Node
    		exp       int64
    		warnafter int64
    		aud       []string
    		err       string
    		// desired
    		sc *jwt.Claims
    		pc *privateClaims
    
    		featureJTI, featurePodNodeInfo, featureNodeBinding bool
    	}{
    		{
    			// pod and secret
    			sa:  sa,
    			pod: pod,
    			sec: sec,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top