Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 356 for exp5 (0.04 sec)

  1. src/cmd/compile/internal/types2/resolver.go

    func (check *Checker) arity(pos syntax.Pos, names []*syntax.Name, inits []syntax.Expr, constDecl, inherited bool) {
    	l := len(names)
    	r := len(inits)
    
    	const code = WrongAssignCount
    	switch {
    	case l < r:
    		n := inits[l]
    		if inherited {
    			check.errorf(pos, code, "extra init expr at %s", n.Pos())
    		} else {
    			check.errorf(n, code, "extra init expr %s", n)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerificationConfiguration.java

            }
    
            private boolean matches(@Nullable String value, String expr) {
                if (value == null) {
                    return true;
                }
                if (!regex) {
                    return expr.equals(value);
                }
                return expr.matches(value);
            }
    
            @Override
            public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. chainable_api.go

    		tx.Statement.TableExpr = &clause.Expr{SQL: name, Vars: args}
    		if results := tableRegexp.FindStringSubmatch(name); len(results) == 3 {
    			if results[1] != "" {
    				tx.Statement.Table = results[1]
    			} else {
    				tx.Statement.Table = results[2]
    			}
    		}
    	} else if tables := strings.Split(name, "."); len(tables) == 2 {
    		tx.Statement.TableExpr = &clause.Expr{SQL: tx.Statement.Quote(name)}
    		tx.Statement.Table = tables[1]
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. tensorflow/c/ops.h

        TF_OpDefinitionBuilder* builder, const char* attr_spec);
    
    // Adds an input to this TF_OpDefinitionBuilder.
    // The spec has form "<name>:<type-expr>" or "<name>:Ref(<type-expr>)"
    // where <name> matches regexp [a-z][a-z0-9_]* and <type-expr> can be:
    // * For a single tensor: <type>
    // * For a sequence of tensors with the same type: <number>*<type>
    // * For a sequence of tensors with different types: <type-list>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

        }
    
        def "reports problem on #expr buildDependencies.getDependencies(...)"() {
            given:
            buildFile << """
                $setup
                def buildable = $expr
                configurations.create("test")
                println(buildable.buildDependencies.getDependencies(null))
            """
    
            when:
            if (expr == "dependencies.project([path: ':', configuration: 'test'])") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/decl.go

    			// (see issues go.dev/issue/42991, go.dev/issue/42992).
    			check.errpos = obj.pos
    		}
    		check.expr(nil, &x, init)
    	}
    	check.initConst(obj, &x)
    }
    
    func (check *Checker) varDecl(obj *Var, lhs []*Var, typ, init syntax.Expr) {
    	assert(obj.typ == nil)
    
    	// determine type, if any
    	if typ != nil {
    		obj.typ = check.varType(typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/go/types/check_test.go

    	if err := parseFlags(srcs[0], flags); err != nil {
    		t.Fatal(err)
    	}
    
    	exp, err := buildcfg.ParseGOEXPERIMENT(runtime.GOOS, runtime.GOARCH, goexperiment)
    	if err != nil {
    		t.Fatal(err)
    	}
    	old := buildcfg.Experiment
    	defer func() {
    		buildcfg.Experiment = old
    	}()
    	buildcfg.Experiment = *exp
    
    	// By default, gotypesalias is not set.
    	if gotypesalias != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandlerTest.groovy

    import org.codehaus.groovy.ast.ClassNode
    import org.codehaus.groovy.ast.CodeVisitorSupport
    import org.codehaus.groovy.ast.expr.ArgumentListExpression
    import org.codehaus.groovy.ast.expr.ClassExpression
    import org.codehaus.groovy.ast.expr.ConstantExpression
    import org.codehaus.groovy.ast.expr.MethodCallExpression
    import org.codehaus.groovy.control.CompilationFailedException
    import org.codehaus.groovy.control.Phases
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. statement.go

    				return []clause.Expression{clause.Expr{SQL: s, Vars: args}}
    			}
    
    			if len(args) > 0 && strings.Contains(s, "@") {
    				// looks like a named query
    				return []clause.Expression{clause.NamedExpr{SQL: s, Vars: args}}
    			}
    
    			if strings.Contains(strings.TrimSpace(s), " ") {
    				// looks like a where condition
    				return []clause.Expression{clause.Expr{SQL: s, Vars: args}}
    			}
    
    			if len(args) == 1 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/go/types/generate_test.go

    	id := ast.NewIdent(name)
    	id.NamePos = pos
    	return id
    }
    
    // insert inserts x at list[at] and moves the remaining elements up.
    func insert(list []ast.Expr, at int, x ast.Expr) []ast.Expr {
    	list = append(list, nil)
    	copy(list[at+1:], list[at:])
    	list[at] = x
    	return list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top