Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for negPre (0.15 sec)

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

        return new Is(match);
      }
    
      /**
       * Returns a {@code char} matcher that matches any character except the BMP character specified.
       *
       * <p>To negate another {@code CharMatcher}, use {@link #negate()}.
       */
      public static CharMatcher isNot(final char match) {
        return new IsNot(match);
      }
    
      /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CharMatcher.java

        return new Is(match);
      }
    
      /**
       * Returns a {@code char} matcher that matches any character except the BMP character specified.
       *
       * <p>To negate another {@code CharMatcher}, use {@link #negate()}.
       */
      public static CharMatcher isNot(final char match) {
        return new IsNot(match);
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function_test.cc

                 {{"scalar10_0:output:0", "scalar10"}}, {});
    }
    
    TEST_F(CApiFunctionTest, OneOp_OneInput_OneOutput) {
      /*
       *                   |
       *                   v
       *                 negate
       *                   |
       *                   v
       */
      // Define
      TF_Operation* feed = Placeholder(func_graph_, s_);
      TF_Operation* neg = Neg(feed, func_graph_, s_);
      Define(-1, {}, {feed}, {neg}, {});
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
Back to top