Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for useN (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Sets the java home dir. Setting to null requests that the executer use the real default java home dir rather than the default used for testing.
         */
        GradleExecuter withJavaHome(File userHomeDir);
    
        /**
         * Sets the executable to use. Set to null to use the real default executable (if any) rather than the default used for testing.
         */
        GradleExecuter usingExecutable(String script);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/doc.go

    // BCP 47 user configuration.
    // For instance, it will know that a reader of Bokmål Danish can read Norwegian
    // and will know that Cantonese ("yue") is a good match for "zh-HK".
    //
    // # Using match results
    //
    // To guarantee a consistent user experience to the user it is important to
    // use the same language tag for the selection of any locale-specific services.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/runtime/HACKING.md

    `systemstack`, `mcall`, or `asmcgocall` to perform tasks that must not
    be preempted, that must not grow the user stack, or that switch user
    goroutines. Code running on the system stack is implicitly
    non-preemptible and the garbage collector does not scan system stacks.
    While running on the system stack, the current user stack is not used
    for execution.
    
    nosplit functions
    -----------------
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. docs/en/docs/how-to/sql-databases-peewee.md

    !!! tip
        This will just make Peewee behave correctly when used with FastAPI. Not randomly opening or closing connections that are being used, creating errors, etc.
    
        But it doesn't give Peewee async super-powers. You should still use normal `def` functions and not `async def`.
    
    ### Use the custom `PeeweeConnectionState` class
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    `test` task of a plugin project), the same distribution used to execute the tests will be used by the runner. When using the runner as part of tests _being executed by an IDE_, the same distribution of Gradle that was used when importing the project will be used. This means that the plugin will effectively be tested with the same version of Gradle that it is being built with.
    
    Alternatively, a different and specific version of Gradle to use can be specified by the any of the following `GradleRunner`...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

                // When the user home directory is not the default for int tests, then the Gradle instance that was used during the test will still be holding some services open in the user home dir (this is by design), so kill off the Gradle instance that was used.
                // If we ran in embedded mode, shutdown the embedded services
                // If we used the daemons, kill the daemons
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerIsolationIntegrationTest.groovy

        def "configuration in gradle user home is not used by gradle runner builds"() {
            when:
            // Gradle 2.6 leaks native-platform into the test process with a custom GUH
            Assume.assumeTrue(gradleVersion > GradleVersion.version("2.6"))
    
            def userHome = file("user-home")
            def gradleUserHome = userHome.file(".gradle")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        // The following loop will change the value uses, thus we cache all the uses
        // needs to be changed.
        SmallVector<std::pair<Operation*, int>> uses;
        for (OpOperand& use : value.getUses()) {
          uses.push_back({use.getOwner(), use.getOperandNumber()});
        }
        for (const auto [user, operand_num] : uses) {
          const std::unique_ptr<OpQuantSpec> spec = GetQuantSpec(user);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

     private:
      linked_ptr<const ParamGeneratorInterface<T> > impl_;
    };
    
    // Generates values from a range of two comparable values. Can be used to
    // generate sequences of user-defined types that implement operator+() and
    // operator<().
    // This class is used in the Range() function.
    template <typename T, typename IncrementT>
    class RangeGenerator : public ParamGeneratorInterface<T> {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    +
    If not, directories for release versions are deleted after 30 days of inactivity, and snapshot versions after 7 days.
    - Shared caches in `caches/` (e.g., `jars-*`) are checked for whether they are still in use.
    +
    If no Gradle version still uses them, they are deleted.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top