Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 796 for copiedS (0.14 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. 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)
  3. 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)
  4. android/guava/src/com/google/common/io/ByteStreams.java

          long oldPosition = sourceChannel.position();
          long position = oldPosition;
          long copied;
          do {
            copied = sourceChannel.transferTo(position, ZERO_COPY_CHUNK_SIZE, to);
            position += copied;
            sourceChannel.position(position);
          } while (copied > 0 || position < sourceChannel.size());
          return position - oldPosition;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. releasenotes/notes/manifest-base-cleanup.yaml

    upgradeNotes:
      - title: "`base` Helm Chart removals"
        content: |
          A number of configurations previously present in the the `base` Helm chart were *copied* to the `istiod` chart in a previous releases.
    
          In this release, the duplicated configurations are fully removed from the `base` chart.
    
          Below shows a mapping of old configuration to new configuration:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/LICENSE

     * SUCH DAMAGE.
     *
     * The licence and distribution terms for any publically available version or
     * derivative of this code cannot be changed.  i.e. this code cannot simply be
     * copied and put under another distribution licence
     * [including the GNU Public Licence.]
     */
    
    
    ISC license used for completely new code in BoringSSL:
    
    /* Copyright (c) 2015, Google Inc.
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/runtime/stubs.go

    //
    // Arguments passed in registers must be laid out in regArgs according to the ABI.
    // regArgs will hold any return values passed in registers after the call.
    //
    // reflectcall copies stack arguments from stackArgs to the goroutine stack, and
    // then copies back stackArgsSize-stackRetOffset bytes back to the return space
    // in stackArgs once fn has completed. It also "unspills" argument registers from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.ApplicationPluginConvention.xml

                </tr>
                <tr>
                    <td>applicationDistribution</td>
                    <td>A copy spec that includes all of the contents of <literal>src/dist</literal>, copies the start scripts into <literal>bin</literal>, and copies the built jar and all dependencies into <literal>lib</literal></td>
                </tr>
                <tr>
                    <td>executableDir</td>
                    <td><literal>"bin"</literal></td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. pkg/dns/client/dns.go

    	// So lookup the cname table first
    	for _, cn := range table.cname[hostname] {
    		// this was a cname match
    		copied := dns.Copy(cn).(*dns.CNAME)
    		copied.Header().Name = question
    		cnAnswers = append(cnAnswers, copied)
    		hostname = copied.Target
    	}
    
    	switch qtype {
    	case dns.TypeA:
    		ipAnswers = table.name4[hostname]
    	case dns.TypeAAAA:
    		ipAnswers = table.name6[hostname]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/copyelim.go

    		}
    		advance = !advance
    	}
    
    	// The answer is w.  Update all the copies we saw
    	// to point directly to w.  Doing this update makes
    	// sure that we don't end up doing O(n^2) work
    	// for a chain of n copies.
    	for v != w {
    		x := v.Args[0]
    		v.SetArg(0, w)
    		v = x
    	}
    	return w
    }
    
    // copyelimValue ensures that no args of v are copies.
    func copyelimValue(v *Value) {
    	for i, a := range v.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top