Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for add_to_collection (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

        # the tensors that accept asset file paths.
        for asset_file_def in asset_file_defs:
          asset_any_proto = Any()
          asset_any_proto.Pack(asset_file_def)
          ops.add_to_collection(
              saved_model_constants.ASSETS_KEY,
              asset_any_proto,
          )
    
        model_saver = None
        # If `saver_def` is not None, it means there are variables in the graph.
        if saver_def:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            }
            return dest;
        }
    
        public static <V, T extends Collection<? super V>> T addToCollection(T dest, Iterable<? extends V> src) {
            return addToCollection(dest, false, src);
        }
    
        @Deprecated
        public static <V, T extends Collection<? super V>> T addToCollection(T dest, boolean failOnNull, Iterable<? extends V>... srcs) {
            for (Iterable<? extends V> src : srcs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            }
            return dest;
        }
    
        public static <V, T extends Collection<? super V>> T addToCollection(T dest, Iterable<? extends V> src) {
            return addToCollection(dest, false, src);
        }
    
        @Deprecated
        public static <V, T extends Collection<? super V>> T addToCollection(T dest, boolean failOnNull, Iterable<? extends V>... srcs) {
            for (Iterable<? extends V> src : srcs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

        public Set<File> getApplicationClasspath() {
            return applicationClasspath;
        }
    
        @Override
        public WorkerProcessBuilder applicationModulePath(Iterable<File> files) {
            GUtil.addToCollection(applicationModulePath, files);
            return this;
        }
    
        @Override
        public Set<File> getApplicationModulePath() {
            return applicationModulePath;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top