Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for useN (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. apache-maven/src/assembly/maven/conf/settings.xml

    <!--
     | This is the configuration file for Maven. It can be specified at two levels:
     |
     |  1. User Level. This settings.xml file provides configuration for a single user,
     |                 and is normally provided in ${user.home}/.m2/settings.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -s /path/to/user/settings.xml
     |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K 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. src/encoding/gob/error.go

    }
    
    // error_ wraps the argument error and uses it as the argument to panic.
    func error_(err error) {
    	panic(gobError{err})
    }
    
    // catchError is meant to be used as a deferred function to turn a panic(gobError) into a
    // plain error. It overwrites the error return of the function that deferred its call.
    func catchError(err *error) {
    	if e := recover(); e != nil {
    		ge, ok := e.(gobError)
    		if !ok {
    			panic(e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:03:07 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. maven-embedder/src/site/apt/logging.apt

     Maven Logging
     -----
     Hervé Boutemy
     -----
     2013-08-02
     -----
    
    Maven Logging
    
     {{{/maven-logging.html}End-user logging documentation}} is available {{{/maven-logging.html}in Maven site}}.
     This documentation is focused on internal implementation details.
    
    * Logging API
    
     Maven uses
     {{{https://codehaus-plexus.github.io/plexus-containers/plexus-container-default/apidocs/org/codehaus/plexus/logging/package-summary.html}Plexus
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 4.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. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "ANDROID_SDK_ROOT",
        // legacy and new android user home
        "ANDROID_USER_HOME",
        "ANDROID_PREFS_ROOT",
    
        // Used by Visual Studio
        "USERNAME",
        "USER",
        "USERDOMAIN",
        "USERPROFILE",
        "LOCALAPPDATA",
    
        // Used by Gradle test infrastructure
        "REPO_MIRROR_URLS",
        "YARNPKG_MIRROR_URL",
    
        // Used to find local java installations
        "SDKMAN_CANDIDATES_DIR",
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top