Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 248 for mexpr (0.12 sec)

  1. 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)
  2. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. migrator/migrator.go

    		}
    	}
    
    	return m.Dialector.DataTypeOf(field)
    }
    
    // FullDataTypeOf returns field's db full data type
    func (m Migrator) FullDataTypeOf(field *schema.Field) (expr clause.Expr) {
    	expr.SQL = m.DataTypeOf(field)
    
    	if field.NotNull {
    		expr.SQL += " NOT NULL"
    	}
    
    	if field.HasDefaultValue && (field.DefaultValueInterface != nil || field.DefaultValue != "") {
    		if field.DefaultValueInterface != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	if n := strings.Count(s, "\n"); n > 0 {
    		p.Line += n
    		s = s[strings.LastIndex(s, "\n")+1:]
    		p.LineRune = 1
    	}
    	p.LineRune += utf8.RuneCountInString(s)
    	return p
    }
    
    // An Expr represents an input element.
    type Expr interface {
    	// Span returns the start and end position of the expression,
    	// excluding leading or trailing comments.
    	Span() (start, end Position)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top