Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OrPredicate (0.56 sec)

  1. android/guava/src/com/google/common/base/Predicates.java

          return components.hashCode() + 0x053c91cf;
        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj instanceof OrPredicate) {
            OrPredicate<?> that = (OrPredicate<?>) obj;
            return components.equals(that.components);
          }
          return false;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Predicates.java

          return components.hashCode() + 0x053c91cf;
        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj instanceof OrPredicate) {
            OrPredicate<?> that = (OrPredicate<?>) obj;
            return components.equals(that.components);
          }
          return false;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

     private:
      std::vector<Predicate*> operands_;
    };
    
    // Represents a logical disjunction of a set of predicates.
    class OrPredicate : public Predicate {
     public:
      explicit OrPredicate(int64_t id, std::vector<Predicate*> operands)
          : Predicate(id), operands_(std::move(operands)) {}
    
      string ToString() const override {
        if (operands().empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top