Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,314 for copiedS (0.32 sec)

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

        return exported_model.saver_def
      return None
    
    
    def _copy_assets(src_path: str, dst_path: str) -> None:
      """Copies the assets directory of the saved model.
    
      Clones the contents of the assets/ directory from the source saved model
      directory to the destination saved model directory. Nothing will be copied if
      there are no assets directory in the source directory.
    
      Args:
        src_path: Source saved model directory.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/DuplicateFileCopyingException.java

     * limitations under the License.
     */
    
    package org.gradle.api.file;
    
    import org.gradle.api.GradleException;
    
    /**
     * Thrown when more than one file with the same relative path name is to be copied
     * and the {@link DuplicatesStrategy} is set to DuplicatesStrategy.FAIL
     */
    public class DuplicateFileCopyingException extends GradleException {
        public DuplicateFileCopyingException(String desc) {
            super(desc);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1004 bytes
    - Viewed (0)
  3. licenses/github.com/shopspring/decimal/LICENSE

    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 22:59:30 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/transform/transform.go

    // Reader wraps another io.Reader by transforming the bytes read.
    type Reader struct {
    	r   io.Reader
    	t   Transformer
    	err error
    
    	// dst[dst0:dst1] contains bytes that have been transformed by t but
    	// not yet copied out via Read.
    	dst        []byte
    	dst0, dst1 int
    
    	// src[src0:src1] contains bytes that have been read from r but not
    	// yet transformed through t.
    	src        []byte
    	src0, src1 int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractPathSensitivityIntegrationSpec.groovy

                task test(type: PathSensitiveTask) {
                    outputFile = file("build/output.txt")
                }
            """
        }
    
        def "copy task stays up-to-date after files are moved but end up copied to the same destination"() {
            file("src/data/input.txt").text = "data"
    
            when:
            buildFile << """
                task copy(type: Copy) {
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/internal/gcprog/gcprog.go

    // The encoding is a simple Lempel-Ziv program, with codes to emit literal bits and to repeat the
    // last n bits c times.
    //
    // The possible codes are:
    //
    //	00000000: stop
    //	0nnnnnnn: emit n bits copied from the next (n+7)/8 bytes, least significant bit first
    //	10000000 n c: repeat the previous n bits c times; n, c are varints
    //	1nnnnnnn c: repeat the previous n bits c times; c is a varint
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. test/fixedbugs/issue40954.go

    	// we stored an integer in that pointer. That integer just happens
    	// to be the address of i.
    	// v is also the address of i.
    	// p has a base type which is marked not-in-heap, so it
    	// should not be adjusted when the stack is copied.
    	recurse(100, p, v)
    }
    func recurse(n int, p *S, v uintptr) {
    	if n > 0 {
    		recurse(n-1, p, v)
    	}
    	if uintptr(unsafe.Pointer(p)) != v {
    		panic("adjusted notinheap pointer")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 15:27:18 UTC 2022
    - 874 bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/CharStreams.java

      }
    
      private CharStreams() {}
    
      /**
       * Copies all characters between the {@link Readable} and {@link Appendable} objects. Does not
       * close or flush either object.
       *
       * @param from the object to read from
       * @param to the object to write to
       * @return the number of characters copied
       * @throws IOException if an I/O error occurs
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. pkg/controller/deployment/rollback.go

    		// otherwise, the deployment's current annotations (should be the same as current new RS) will be copied to the RS after the rollback.
    		//
    		// For example,
    		// A Deployment has old RS1 with annotation {change-cause:create}, and new RS2 {change-cause:edit}.
    		// Note that both annotations are copied from Deployment, and the Deployment should be annotated {change-cause:edit} as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_save_function_ops_to_main.mlir

        tf_executor.graph {
          tf_executor.fetch
        }
        return
      }
    }
    // Save function should be erased.
    // CHECK-NOT: @tf_quant__save
    
    // Test that the contents of @tf_quant__save are copied to @main.
    // CHECK: func.func @main
    // CHECK-SAME: %[[ARG_0:.*]]: tensor<!tf_type.string> {tf_saved_model.index_path = ["__tf_file_prefix"]}
    // CHECK: tf_executor.graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top