Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,228 for spill (0.1 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/TestDeploymentFixture.groovy

            return triggerFile
        }
    
        File getKeyFile() {
            return keyFile
        }
    
        void assertDeploymentIsRunning(String key) {
            // assert that the keyFile still exists and has the same contents (ie handle is still running)
            assert keyFile.exists()
            assert keyFile.text == key
        }
    
        void assertDeploymentIsStopped() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 26 00:54:23 UTC 2019
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeLifecycleControllerFactory.kt

            // Some temporary wiring: the cache implementation is still scoped to the root build rather than the build tree
            cache.attachRootBuild(targetBuild.gradle.services.get())
    
            cache.initializeCacheEntry()
    
            // Currently, apply the decoration only to the root build, as the cache implementation is still scoped to the root build (that is, it assumes it is only applied to the root build)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/conditional-openapi.md

    Hiding your documentation user interfaces in production *shouldn't* be the way to protect your API.
    
    That doesn't add any extra security to your API, the *path operations* will still be available where they are.
    
    If there's a security flaw in your code, it will still exist.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/response-model.md

    !!! tip
        But it is still recommended to use the ideas above, using multiple classes, instead of these parameters.
    
        This is because the JSON Schema generated in your app's OpenAPI (and the docs) will still be the one for the complete model, even if you use `response_model_include` or `response_model_exclude` to omit some attributes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. fastapi/params.py

            example: Annotated[
                Optional[Any],
                deprecated(
                    "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, "
                    "although still supported. Use examples instead."
                ),
            ] = _Unset,
            openapi_examples: Optional[Dict[str, Example]] = None,
            deprecated: Union[deprecated, str, bool, None] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/error_util.h

    // code still uses the default error reporting, and the final return function
    // can return the Status constructed from the diagnostics collected.
    // todo: [b/253331656]. Note ConsumeStatus() and Combine() are wrappers
    // of what is inherited from the BaseScopedDiagnosticHandler  to
    // support cases where tensorflow::Status is still being used (base class uses
    // absl::Status)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.9.1-pre.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.9.1-pre"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 369 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/HasConfigurableValue.java

     * no longer change. Note that this is not the same as an immutable value. You can think of a finalized value as similar to a {@code final} variable in Java,
     * so while the value of the variable does not change, the value itself may still be mutable.</p>
     *
     * <p>When a task property has a value of this type, it will be implicitly finalized when the task starts execution, to prevent accidental changes to the task parameters as the task runs.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 16:10:02 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  9. test/convlit.go

    var ss Tstring = "abc"
    var _ = []rune(ss)
    var _ = []byte(ss)
    
    // implicit is still not
    var _ []rune = ss // ERROR "cannot use|incompatible|invalid"
    var _ []byte = ss // ERROR "cannot use|incompatible|invalid"
    
    // named slice is now ok
    type Trune []rune
    type Tbyte []byte
    
    var _ = Trune("abc") // ok
    var _ = Tbyte("abc") // ok
    
    // implicit is still not
    var _ Trune = "abc" // ERROR "cannot use|incompatible|invalid|cannot convert"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. hack/jenkins/README.md

    # Jenkins
    
    Jenkins is no longer in use, please see the [test-infra repo][test-infra] and in
    particular [Prow][prow] instead.
    
    This directory contains some scripts that are still used by the new CI.
    
    [test-infra]: https://github.com/kubernetes/test-infra
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 17 06:47:43 UTC 2019
    - 319 bytes
    - Viewed (0)
Back to top