Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 595 for exp5 (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/tutorial/mac-tar-cache-exp.png

    mac-tar-cache-exp.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190.9K bytes
    - Viewed (0)
  2. src/math/rand/exp.go

    		i := j & 0xFF
    		x := float64(j) * float64(we[i])
    		if j < ke[i] {
    			return x
    		}
    		if i == 0 {
    			return re - math.Log(r.Float64())
    		}
    		if fe[i]+float32(r.Float64())*(fe[i-1]-fe[i]) < float32(math.Exp(-x)) {
    			return x
    		}
    	}
    }
    
    var ke = [256]uint32{
    	0xe290a139, 0x0, 0x9beadebc, 0xc377ac71, 0xd4ddb990,
    	0xde893fb8, 0xe4a8e87c, 0xe8dff16a, 0xebf2deab, 0xee49a6e8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/call.go

    				x.mode = constant_
    				x.typ = exp.typ
    				x.val = exp.val
    			case *TypeName:
    				x.mode = typexpr
    				x.typ = exp.typ
    			case *Var:
    				x.mode = variable
    				x.typ = exp.typ
    				if pkg.cgo && strings.HasPrefix(exp.name, "_Cvar_") {
    					x.typ = x.typ.(*Pointer).base
    				}
    			case *Func:
    				x.mode = funcMode
    				x.typ = exp.typ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. src/go/types/call.go

    					_, exp = check.scope.LookupParent(prefix+sel, check.pos)
    					if exp != nil {
    						break
    					}
    				}
    				if exp == nil {
    					check.errorf(e.Sel, UndeclaredImportedName, "undefined: %s", ast.Expr(e)) // cast to ast.Expr to silence vet
    					goto Error
    				}
    				check.objDecl(exp, nil)
    			} else {
    				exp = pkg.scope.Lookup(sel)
    				if exp == nil {
    					if !pkg.fake {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

    import org.codehaus.groovy.ast.expr.Expression;
    import org.codehaus.groovy.ast.expr.ListExpression;
    import org.codehaus.groovy.ast.expr.MapEntryExpression;
    import org.codehaus.groovy.ast.expr.MapExpression;
    import org.codehaus.groovy.ast.expr.MethodCallExpression;
    import org.codehaus.groovy.ast.expr.PropertyExpression;
    import org.codehaus.groovy.ast.expr.SpreadMapExpression;
    import org.codehaus.groovy.ast.expr.VariableExpression;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/ListsTest.java

        List<String> y = list("3", "4");
    
        List<Object> exp1 = list((Object) 1, "3");
        List<Object> exp2 = list((Object) 1, "4");
        List<Object> exp3 = list((Object) 2, "3");
        List<Object> exp4 = list((Object) 2, "4");
    
        assertThat(Lists.<Object>cartesianProduct(x, y))
            .containsExactly(exp1, exp2, exp3, exp4)
            .inOrder();
      }
    
      public void testCartesianProductTooBig() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/ListsTest.java

        List<String> y = list("3", "4");
    
        List<Object> exp1 = list((Object) 1, "3");
        List<Object> exp2 = list((Object) 1, "4");
        List<Object> exp3 = list((Object) 2, "3");
        List<Object> exp4 = list((Object) 2, "4");
    
        assertThat(Lists.<Object>cartesianProduct(x, y))
            .containsExactly(exp1, exp2, exp3, exp4)
            .inOrder();
      }
    
      public void testCartesianProductTooBig() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    				func(i int, aname string, atype ast.Expr) {
    					t := p.cgoType(atype)
    					fmt.Fprintf(cdeclBuf, "%s", t.C)
    				})
    		default:
    			// Declare a result struct.
    			fmt.Fprintf(fgcch, "\n/* Return type for %s */\n", exp.ExpName)
    			fmt.Fprintf(fgcch, "struct %s_return {\n", exp.ExpName)
    			forFieldList(fntype.Results,
    				func(i int, aname string, atype ast.Expr) {
    					t := p.cgoType(atype)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    //
    // For nodes that don't represent index expressions, the first return value of
    // UnpackIndexExpr will be nil.
    func UnpackIndexExpr(n ast.Node) (x ast.Expr, lbrack token.Pos, indices []ast.Expr, rbrack token.Pos) {
    	switch e := n.(type) {
    	case *ast.IndexExpr:
    		return e.X, e.Lbrack, []ast.Expr{e.Index}, e.Rbrack
    	case *ast.IndexListExpr:
    		return e.X, e.Lbrack, e.Indices, e.Rbrack
    	}
    	return nil, token.NoPos, nil, token.NoPos
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. internal/auth/credentials.go

    func ExpToInt64(expI interface{}) (expAt int64, err error) {
    	switch exp := expI.(type) {
    	case string:
    		expAt, err = strconv.ParseInt(exp, 10, 64)
    	case float64:
    		expAt, err = int64(exp), nil
    	case int64:
    		expAt, err = exp, nil
    	case int:
    		expAt, err = int64(exp), nil
    	case uint64:
    		expAt, err = int64(exp), nil
    	case uint:
    		expAt, err = int64(exp), nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top