Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for set_dtype (0.04 sec)

  1. tensorflow/c/c_api.cc

        for (const auto& p : *shapes_and_types) {
          auto* out_shape_and_type = handle_data.add_shape_and_type();
          ic->ShapeHandleToProto(p.shape, out_shape_and_type->mutable_shape());
          out_shape_and_type->set_dtype(p.dtype);
          *out_shape_and_type->mutable_type() = p.type;
        }
      }
      string str_data;
      handle_data.SerializeToString(&str_data);
    
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Sat Oct 04 05:55:32 UTC 2025
    - 102.4K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            String src = source.getType();
            if (src != null) {
                if (sourceDominant || target.getType() == null) {
                    target.setType(src);
                    target.setLocation("type", source.getLocation("type"));
                }
            }
        }
    
        protected void mergeDependency_Classifier(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                            .setIndex(index)
                            .setSource(new DocMap(source))
                            .setRefreshPolicy(RefreshPolicy.IMMEDIATE)
                            .setOpType(OpType.CREATE)
                            .execute()
                            .actionGet(fessConfig.getIndexIndexTimeout());
                } else {
                    // create or update
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
Back to top