Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for JoinTarget (0.08 sec)

  1. clause/joins.go

    	LeftJoin  JoinType = "LEFT"
    	RightJoin JoinType = "RIGHT"
    )
    
    type JoinTarget struct {
    	Type        JoinType
    	Association string
    	Subquery    Expression
    	Table       string
    }
    
    func Has(name string) JoinTarget {
    	return JoinTarget{Type: InnerJoin, Association: name}
    }
    
    func (jt JoinType) Association(name string) JoinTarget {
    	return JoinTarget{Type: jt, Association: name}
    }
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

          completed.assertCompletionNotExpected(timeoutMillis);
          assertThat(thread.getState()).isNotEqualTo(Thread.State.TERMINATED);
        }
      }
    
      private static class JoinTarget extends DelayedActionRunnable {
        JoinTarget(long tMinus) {
          super(tMinus);
        }
    
        @Override
        protected void doAction() {}
      }
    
      private static class Release extends DelayedActionRunnable {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  3. generics.go

    	Not(query interface{}, args ...interface{}) ChainInterface[T]
    	Or(query interface{}, args ...interface{}) ChainInterface[T]
    	Limit(offset int) ChainInterface[T]
    	Offset(offset int) ChainInterface[T]
    	Joins(query clause.JoinTarget, on func(db JoinBuilder, joinTable clause.Table, curTable clause.Table) error) ChainInterface[T]
    	Preload(association string, query func(db PreloadBuilder) error) ChainInterface[T]
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 15.5K bytes
    - Viewed (0)
Back to top