Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 134 for exportable (0.12 sec)

  1. docs/pt/docs/fastapi-cli.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: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/cover/doc.go

    (package-scope instrumentation is enabled via "-pkgcfg" option).
    
    When generated instrumented code, the cover tool computes approximate
    basic block information by studying the source. It is thus more
    portable than binary-rewriting coverage tools, but also a little less
    capable. For instance, it does not probe inside && and || expressions,
    and can be mildly confused by single statements with multiple function
    literals.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/gradle/GradleBuild.java

        /**
         * Returns all builds contained in this build that should be imported into an IDE.
         *
         * <p>This is not always the same the builds returned by {@link #getIncludedBuilds()}. For the root build, the set of importable builds contains all builds that participate in the composite build,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/overview.md

    *   Compiler researchers and implementers looking to optimize performance and
        memory consumption of machine learning models
    *   Hardware makers looking for a way to connect their hardware to TensorFlow,
        such as TPUs, portable neural hardware in phones, and other custom ASICs
    *   People writing language bindings that want to take advantage of optimizing
        compilers and hardware acceleration.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_internal.txt

    env GO111MODULE=on
    [short] skip
    
    # golang.org/x/internal should be importable from other golang.org/x modules.
    go mod edit -module=golang.org/x/anything
    go get .
    
    # ...and their tests...
    go test
    stdout PASS
    
    # ...but that should not leak into other modules.
    go get ./baddep
    ! go build ./baddep
    stderr golang.org[/\\]notx[/\\]useinternal
    stderr 'use of internal package golang.org/x/.* not allowed'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats

    @test "Wheel is installable" {
        python3 -m venv /tf/venv
        source /tf/venv/bin/activate
        python3 -m pip install --upgrade setuptools wheel
        python3 -m pip install "$TF_WHEEL"
    }
    
    @test "TensorFlow is importable" {
        source /tf/venv/bin/activate
        python3 -c 'import tensorflow as tf; t1=tf.constant([1,2,3,4]); t2=tf.constant([5,6,7,8]); print(tf.add(t1,t2).shape)'
    }
    
    # Is this still useful?
    @test "TensorFlow has Keras" {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_util.c

    static void
    x_cgo_yield()
    {
    	/*
    	The libc function(s) we call here must form a no-op and include at least one
    	call that triggers TSAN to process pending asynchronous signals.
    
    	sleep(0) would be fine, but it's not portable C (so it would need more header
    	guards).
    	free(NULL) has a fast-path special case in TSAN, so it doesn't
    	trigger signal delivery.
    	free(malloc(0)) would work (triggering the interceptors in malloc), but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  8. src/database/sql/doc.txt

      and Postgres, but all with a very different feel, and often
      a non-Go-like feel.
    
    * Feel like Go.
    
    * Care mostly about the common cases. Common SQL should be portable.
      SQL edge cases or db-specific extensions can be detected and
      conditionally used by the application.  It is a non-goal to care
      about every particular db's extension or quirk.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top