- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for Lhs (0.01 seconds)
-
android/guava-testlib/src/com/google/common/collect/testing/Helpers.java
this.justAfterNull = checkNotNull(justAfterNull); } @Override public int compare(@Nullable String lhs, @Nullable String rhs) { if (lhs == rhs) { return 0; } if (lhs == null) { // lhs (null) comes just before justAfterNull. // If rhs is b, lhs comes first. if (rhs.equals(justAfterNull)) { return -1; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 17.2K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/Helpers.java
this.justAfterNull = checkNotNull(justAfterNull); } @Override public int compare(@Nullable String lhs, @Nullable String rhs) { if (lhs == rhs) { return 0; } if (lhs == null) { // lhs (null) comes just before justAfterNull. // If rhs is b, lhs comes first. if (rhs.equals(justAfterNull)) { return -1; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 17.2K bytes - Click Count (0) -
internal/s3select/sql/evaluate.go
if arr, ok := rhs.ToArray(); ok { for _, element := range arr { // If we have an array we are on the wrong level. if cmp(element, *lhs) { return FromBool(true), nil } } return FromBool(false), nil } return FromBool(cmp(rhs, *lhs)), nil } func (e *Operand) evalNode(r Record, tableAlias string) (*Value, error) { lval, lerr := e.Left.evalNode(r, tableAlias)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 12K bytes - Click Count (0) -
src/cmd/asm/internal/asm/parse.go
p.errorf("expected simple register reference") } a.Type = obj.TYPE_REG a.Reg = r1 if r2 != 0 { // Form is R1:R2. It is on RHS and the second register // needs to go into the LHS. panic("cannot happen (Addr.Reg2)") } } // fmt.Printf("REG %s\n", obj.Dconv(&emptyProg, 0, a)) p.expectOperandEnd() return } // Constant. haveConstant := false
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Feb 17 19:57:47 GMT 2026 - 37.3K bytes - Click Count (0) -
src/cmd/cgo/ast.go
case *ast.SendStmt: f.walk(&n.Chan, ctxExpr, visit) f.walk(&n.Value, ctxExpr, visit) case *ast.IncDecStmt: f.walk(&n.X, ctxExpr, visit) case *ast.AssignStmt: f.walk(n.Lhs, ctxExpr, visit) if len(n.Lhs) == 2 && len(n.Rhs) == 1 { f.walk(n.Rhs, ctxAssign2, visit) } else { f.walk(n.Rhs, ctxExpr, visit) } case *ast.GoStmt: f.walk(n.Call, ctxExpr, visit) case *ast.DeferStmt:
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 08 17:58:59 GMT 2026 - 14.4K bytes - Click Count (0) -
api/go1.5.txt
pkg go/types, type Info struct, Types map[ast.Expr]TypeAndValue pkg go/types, type Info struct, Uses map[*ast.Ident]Object pkg go/types, type Initializer struct pkg go/types, type Initializer struct, Lhs []*Var pkg go/types, type Initializer struct, Rhs ast.Expr pkg go/types, type Interface struct pkg go/types, type Label struct pkg go/types, type Map struct pkg go/types, type MethodSet struct
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jul 30 21:14:09 GMT 2015 - 46.6K bytes - Click Count (0)