Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 424 for loadOps (0.12 sec)

  1. tensorflow/cc/saved_model/bundle_v2.h

    /// loaded into an executable in-memory representation).
    class SavedModelV2Bundle {
     public:
      using RestoreObjectsCallback =
          std::function<Status(int, const TrackableObjectGraph::TrackableObject&)>;
    
      /// Loads persistent representations for a SavedModelV2 from the specified
      /// export directory.
      static Status Load(const std::string& export_dir, SavedModelV2Bundle* bundle);
    
      /// MetaGraphDef from the loaded SavedModel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 20 03:32:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. releasenotes/notes/pilot-load-dns-cert-known-location-deprecate-flags.yaml

      /var/run/secrets/istiod/tls/tls.key
      /var/run/secrets/istiod/ca/root-cert.pem
      ```
      The CA path will alternatively be loaded from: `/var/run/secrets/tls/ca.crt`
      It also automatically loads any secret called istiod-tls and the istio-root-ca-configmap into those paths.
      This method is preferred to use those well known paths than to set the tls args.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 29 22:41:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/dupLoad_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test makes sure that we don't split a single
    // load up into two separate loads.
    
    package main
    
    import "testing"
    
    //go:noinline
    func read1(b []byte) (uint16, uint16) {
    	// There is only a single read of b[0].  The two
    	// returned values must have the same low byte.
    	v := b[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20/xor.go

    func addXor(dst, src []byte, a, b uint32) {
    	_, _ = src[3], dst[3] // bounds check elimination hint
    	if unaligned {
    		// The compiler should optimize this code into
    		// 32-bit unaligned little endian loads and stores.
    		// TODO: delete once the compiler does a reliably
    		// good job with the generic code below.
    		// See issue #25111 for more details.
    		v := uint32(src[0])
    		v |= uint32(src[1]) << 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 22:52:07 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            workGraphStoredAndLoaded()
            def loadOp = operations.only(ConfigurationCacheLoadBuildOperationType)
            def storeOp = operations.only(ConfigurationCacheStoreBuildOperationType)
            with(storeOp.result) {
                cacheEntrySize > 0
            }
            with(loadOp.result) {
                cacheEntrySize == storeOp.result.cacheEntrySize
            }
            def buildInvocationId = loadOp.result.originBuildInvocationId
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/loader.h

    Status LoadMetagraphIntoSession(const SessionOptions& session_options,
                                    const MetaGraphDef& meta_graph,
                                    std::unique_ptr<Session>* session);
    
    /// Loads a SavedModel from the specified export directory. The MetaGraphDef
    /// to be loaded is identified by the supplied tags, corresponding exactly to
    /// the set of tags used at SavedModel build time. Stores a SavedModel bundle in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/GroovyRecompilationSpecProvider.java

            if (!classesWithJavaSource.isEmpty()) {
                // We need to collect just accessible dependents, since it seems
                // private references to classes are not problematic when Groovy compiler loads a class
                sourceFileChangeProcessor.processOnlyAccessibleChangeOfClasses(classesWithJavaSource, recompilationSpec);
            }
        }
    
        private boolean supportsGroovyJavaJointCompilation(JavaCompileSpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/TextResourceScriptSource.java

    import static org.apache.commons.lang.StringUtils.substringBeforeLast;
    import static org.gradle.internal.hash.Hashing.hashString;
    
    /**
     * A {@link ScriptSource} which loads the script from a URI.
     */
    public class TextResourceScriptSource implements ScriptSource {
        private final TextResource resource;
        private String className;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 10:24:10 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_arm64.go

    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    //go:noescape
    func Load64(ptr *uint64) uint64
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(addr *uint32) uint32
    
    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler_client.h

      // returns it.
      virtual absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result) = 0;
    
      // Loads `serialized_executable` into an `ExecutableType` using `ClientType`.
      virtual StatusOr<std::unique_ptr<ExecutableType>> LoadExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top