Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 119 for exportable (0.15 sec)

  1. ci/official/wheel_test/test_import_api_packages.py

          # tensorflow._api.v2.distribute.experimental to
          # tensorflow.distribute.experimental
          short_package_name = package_name.replace(f"_api.{version}.", "")
          # skip non-importable paths
          if short_package_name not in self.packages_for_skip:
            try:
              __import__(short_package_name)
            except ImportError:
              logging.exception("error importing %s", short_package_name)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 13 15:52:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_device_compiler_client.cc

          pjrt_compile_options.executable_build_options.num_partitions() > 1) {
        // Compile executable for sharded program
        pjrt_compile_options.compile_portable_executable = false;
      } else {
        // Compile portable executable for single device compilation.
        pjrt_compile_options.compile_portable_executable = true;
      }
      return pjrt_compile_options;
    }
    
    absl::StatusOr<std::unique_ptr<xla::PjRtLoadedExecutable>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. ci/official/wheel_test/README.md

    ## Wheel Test
    
    This directory is dedicated to tests that require a built TensorFlow wheel
    file for testing, such as:
    
    * Ensuring the entire API is importable
    * Testing downstream projects against the wheel
    
    Ensure you have Bazel installed and accessible from your command line.
    
    These tests use hermetic Python. They also require a built TensorFlow wheel file
    and a requirements_lock file. The requirements_lock file is generated by the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/manually.md

     │                      │
     ╰──────────────────────╯
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    <font color="#3465A4">INFO    </font> Found importable FastAPI app
    
     ╭─ <font color="#8AE234"><b>Importable FastAPI app</b></font> ─╮
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. docs/orchestration/README.md

    The term cloud-native revolves around the idea of applications deployed as micro services, that scale well. It is not about just retrofitting monolithic applications onto modern container based compute environment. A cloud-native application is portable and resilient by design, and can scale horizontally by simply replicating. Modern orchestration platforms like Kubernetes, DC/OS make replicating and managing containers in huge clusters easier than ever.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. src/crypto/sha1/sha1block.go

    // license that can be found in the LICENSE file.
    
    package sha1
    
    import (
    	"math/bits"
    )
    
    const (
    	_K0 = 0x5A827999
    	_K1 = 0x6ED9EBA1
    	_K2 = 0x8F1BBCDC
    	_K3 = 0xCA62C1D6
    )
    
    // blockGeneric is a portable, pure Go version of the SHA-1 block step.
    // It's used by sha1block_generic.go and tests.
    func blockGeneric(dig *digest, p []byte) {
    	var w [16]uint32
    
    	h0, h1, h2, h3, h4 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall.go

    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    // to freebsd and $GOARCH to arm.
    //
    // The primary use of this package is inside other packages that provide a more
    // portable interface to the system, such as "os", "time" and "net".  Use
    // those packages rather than this one if you can.
    //
    // For details of the functions and data types in this package consult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. cluster/get-kube-binaries.sh

    echo "Add '${KUBE_ROOT}/client/bin' to your PATH to use newly-installed binaries."
    
    if "${DOWNLOAD_TESTS_TAR}"; then
      TESTS_PORTABLE_TAR="kubernetes-test-portable.tar.gz"
      download_tarball "${KUBE_ROOT}/test" "${TESTS_PORTABLE_TAR}" || true
      if [[ -f "${KUBE_ROOT}/test/${TESTS_PORTABLE_TAR}" ]]; then
        echo "Extracting ${TESTS_PORTABLE_TAR} into ${KUBE_ROOT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. src/runtime/debug/stack.go

    		if err != nil {
    			return err
    		}
    		runtime.KeepAlive(f) // prevent finalization before dup
    		fd = uintptr(fd2)
    	}
    	if prev := runtime_setCrashFD(fd); prev != ^uintptr(0) {
    		// We use NewFile+Close because it is portable
    		// unlike syscall.Close, whose parameter type varies.
    		os.NewFile(prev, "").Close() // ignore error
    	}
    	return nil
    }
    
    //go:linkname runtime_setCrashFD runtime.setCrashFD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                renderGraph(
                    allDataJson[chart.field],
                    {
                        tickFormatter: (index, value) => {
                            if (index === parseInt(index, 10)) { // portable way to check if sth is an integer
                                const executionLabel = allDataJson.executionLabels[index];
                                return executionLabel ? executionLabel.date : "";
                            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top