Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for placeholders (0.19 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

            StackTraceElement[] stackTrace = new StackTraceElement[placeholders.size()];
            for (int i = 0; i < placeholders.size(); i++) {
                stackTrace[i] = placeholders.get(i).toStackTraceElement();
            }
            return stackTrace;
        }
    
        @SuppressWarnings("Since15")
        private static List<? extends Throwable> extractSuppressed(Throwable throwable) {
            if (isJava7()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_util.cc

        g->RemoveEdge(e);
    
        // Find or create placeholder node.
        string new_name =
            absl::StrCat(src->name(), "_oc_to_oc_placeholder_", src_output);
        auto placeholder_index = std::make_pair(src->name(), src_output);
        auto iter = placeholders.find(placeholder_index);
        Node* placeholder_node;
        if (iter == placeholders.end()) {
          NodeDefBuilder placeholder_builder(new_name, "Placeholder");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/fmt/example_test.go

    	// Result: 128512 128512 😀 '😀' U+1F600 U+1F600 '😀'
    
    	// Strings are formatted with %v and %s as-is, with %q as quoted strings,
    	// and %#q as backquoted strings.
    	placeholders := `foo "bar"`
    	fmt.Printf("%v %s %q %#q\n", placeholders, placeholders, placeholders, placeholders)
    	// Result: foo "bar" foo "bar" "foo \"bar\"" `foo "bar"`
    
    	// Maps formatted with %v show keys and values in their default formats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  4. src/database/sql/fakedb_test.go

    			stmt.Close()
    			return nil, errf("SELECT on table %q has pre-bound value for where column %q; need a question mark",
    				stmt.table, column)
    		}
    		stmt.placeholders++
    		stmt.whereCol = append(stmt.whereCol, boundCol{Column: column, Placeholder: value, Ordinal: stmt.placeholders})
    	}
    	return stmt, nil
    }
    
    // parts are table|col=type,col2=type2
    func (c *fakeConn) prepareCreate(stmt *fakeStmt, parts []string) (*fakeStmt, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Strings.java

       * Preconditions} class use this formatter, for both of the reasons just discussed.
       *
       * <p><b>Warning:</b> Only the exact two-character placeholder sequence {@code "%s"} is
       * recognized.
       *
       * @param template a string containing zero or more {@code "%s"} placeholder sequences. {@code
       *     null} is treated as the four-character string {@code "null"}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:47:03 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Strings.java

       * Preconditions} class use this formatter, for both of the reasons just discussed.
       *
       * <p><b>Warning:</b> Only the exact two-character placeholder sequence {@code "%s"} is
       * recognized.
       *
       * @param template a string containing zero or more {@code "%s"} placeholder sequences. {@code
       *     null} is treated as the four-character string {@code "null"}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 09 00:49:18 UTC 2021
    - 12.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/shape_inference_test.cc

    TEST(ShapeInferenceTest, Basics) {
      Scope root = Scope::NewRootScope().ExitOnError();
      auto a = ops::Placeholder(root.WithOpName("A"), DT_FLOAT,
                                ops::Placeholder::Shape({2, 3}));
      auto b = ops::Placeholder(root.WithOpName("B"), DT_FLOAT,
                                ops::Placeholder::Shape({3}));
      auto c = ops::Placeholder(root.WithOpName("C"), DT_FLOAT);
      auto d = ops::Add(root.WithOpName("D"), a, b);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

    #include "tensorflow/compiler/mlir/lite/utils/generated_op_quant_spec_getters.inc"
    
    bool PrepareQuantizePass::RemoveRedundantStats(func::FuncOp func) {
      return RemoveRedundantStatsOps(
          func, std::bind(GetOpQuantSpec, std::placeholders::_1,
                          quant_specs_.disable_per_channel_for_dense_layers));
    }
    
    static Value Quantized(Operation* user) {
      if (auto q = llvm::dyn_cast_or_null<quantfork::QuantizeCastOp>(user)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Verify.java

       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Verify.java

       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
Back to top