Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for negation_0 (0.17 sec)

  1. tensorflow/c/c_api_function_test.cc

      TF_Operation* neg = Neg(feed, func_graph_, s_, "neg");
      Define(-1, {}, {feed}, {neg}, {"negation"});
    
      // Use, run, and verify
      TF_Operation* func_feed = Placeholder(host_graph_, s_);
      TF_Operation* func_op = Use({func_feed});
      Run({{func_feed, Int32Tensor(3)}}, func_op, -3);
      VerifyFDef({"neg"}, {{"negation_0", DT_INT32}}, {{"negation", DT_INT32}},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse.go

    	NonGreedy                       // make repetition operators default to non-greedy
    	PerlX                           // allow Perl extensions
    	UnicodeGroups                   // allow \p{Han}, \P{Han} for Unicode group and negation
    	WasDollar                       // regexp OpEndText was $, not \z
    	Simple                          // regexp contains no counted repetition
    
    	MatchNL = ClassNL | DotNL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CharMatcher.java

       * on {@link Platform} so that we can have different behavior in GWT.
       *
       * <p>This implementation tries to be smart in a number of ways. It recognizes cases where the
       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

       * on {@link Platform} so that we can have different behavior in GWT.
       *
       * <p>This implementation tries to be smart in a number of ways. It recognizes cases where the
       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    					keyAsString("config")
    				return istioConfig, nil
    			}
    		}
    	}
    
    	return "", nil
    }
    
    // TODO simplify this by showing for each matching Destination the negation of the previous HttpMatchRequest
    // and showing the non-matching Destinations.  (The current code is ad-hoc, and usually shows most of that information.)
    func printVirtualService(writer io.Writer, initPrintNum int,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    				q := *NewScaledQuantity(j, Scale(k))
    				if asDec {
    					q.AsDec()
    				}
    
    				b := q.DeepCopy()
    				b.Neg()
    				b.Neg()
    				if b.Cmp(q) != 0 {
    					t.Errorf("double negation did not cancel: %s", &q)
    				}
    			}
    		}
    	}
    }
    
    func TestQuantityAsApproximateFloat64(t *testing.T) {
    	table := []struct {
    		in  Quantity
    		out float64
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

        return operands_;
      }
      absl::Span<Predicate* const> operands() const { return operands_; }
    
     private:
      std::vector<Predicate*> operands_;
    };
    
    // Represents a logical negation of a set of predicates.
    class NotPredicate : public Predicate {
     public:
      explicit NotPredicate(int64_t id, Predicate* operand)
          : Predicate(id), operands_({operand}) {}
    
      string ToString() const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    // It tracks a "fact table" of branch conditions. For each branching
    // block, it asserts the branch conditions that uniquely dominate that
    // block, and then separately asserts the block's branch condition and
    // its negation. If either leads to a contradiction, it can trim that
    // successor.
    func prove(f *Func) {
    	// Find induction variables. Currently, findIndVars
    	// is limited to one induction variable per block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      explicit AssertionResult(bool success) : success_(success) {}
    
      // Returns true iff the assertion succeeded.
      operator bool() const { return success_; }  // NOLINT
    
      // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
      AssertionResult operator!() const;
    
      // Returns the text streamed into this AssertionResult. Test assertions
      // use it when they fail (i.e., the predicate's outcome doesn't match the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      explicit AssertionResult(bool success) : success_(success) {}
    
      // Returns true iff the assertion succeeded.
      operator bool() const { return success_; }  // NOLINT
    
      // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
      AssertionResult operator!() const;
    
      // Returns the text streamed into this AssertionResult. Test assertions
      // use it when they fail (i.e., the predicate's outcome doesn't match the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top