Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for Change (0.1 sec)

  1. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

            // However, the File.list spec leaves the order undefined, so no reasonable implementation should depend on it.
            // Making the hash order-independent by sorting the entries maximizes CC hits, even if the OS-returned order changes.
            Arrays.sort(entries)
            entries.forEach(hasher::putString)
            hasher.hash()
        } ?: NON_DIRECTORY_CHILDREN_NAMES_HASH
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

             */
            fun exception(): Builder
    
            fun documentationSection(documentationSection: DocumentationSection): Builder
    
            /**
             * Allows the default location to be changed. The function is called by `build()`
             */
            fun mapLocation(mapper: (PropertyTrace) -> PropertyTrace): Builder
    
            fun build(): PropertyProblem
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. doc/next/3-tools.md

    The new `go` `env` `-changed` flag causes the command to print only
    those settings whose effective value differs from the default value
    that would be obtained in an empty environment with no prior uses of the `-w` flag.
    
    <!-- go.dev/issue/27005, CL 585401 -->
    The new `go` `mod` `tidy` `-diff` flag causes the command not to modify
    the files but instead print the necessary changes as a unified diff.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/metadata/ProjectMetadataController.kt

    import org.gradle.internal.model.ValueCalculator
    import org.gradle.internal.serialize.Decoder
    import org.gradle.internal.serialize.Encoder
    import org.gradle.util.Path
    
    
    /**
     * In charge of serializing and deserializing the project components for Isolated Projects.
     */
    internal
    class ProjectMetadataController(
        private val host: DefaultConfigurationCache.Host,
        private val cacheIO: ConfigurationCacheIO,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. pyproject.toml

        "ignore::trio.TrioDeprecationWarning",
        # TODO remove pytest-cov
        'ignore::pytest.PytestDeprecationWarning:pytest_cov',
        # TODO: remove after upgrading SQLAlchemy to a version that includes the following changes
        # https://github.com/sqlalchemy/sqlalchemy/commit/59521abcc0676e936b31a523bd968fc157fef0c2
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. ReadMe.md

    #Linux & Git for Windows
    sed -i -e '/<components>/,/<\/components>/d' gradle/verification-metadata.xml
    ```
    - Re-generate dependencies with Gradle's `--write-verification-metadata` command (verify update relates to your changes)
    
    ```bash
    ./gradlew -i --write-verification-metadata sha256,md5 -Pkotlin.native.enabled=true resolveDependencies
    ```
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/server-workers.md

    And then the Gunicorn-compatible **Uvicorn worker** class would be in charge of converting the data sent by Gunicorn to the ASGI standard for FastAPI to use it.
    
    ## Install Gunicorn and Uvicorn
    
    <div class="termy">
    
    ```console
    $ pip install "uvicorn[standard]" gunicorn
    
    ---> 100%
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

         *
         * If the content of these files becomes invalid (e.g., because the source declarations they were based on changed), the
         * [KaResolveExtension] must publish an out-of-block modification event via the Analysis API message bus:
         * `KotlinModificationTopics.MODULE_OUT_OF_BLOCK_MODIFICATION`.
         *
         * To react to changes in Kotlin sources, [KaResolveExtension] may subscribe to Analysis API modification topics:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/handling-errors.md

    * etc.
    
    In these cases, you would normally return an **HTTP status code** in the range of **400** (from 400 to 499).
    
    This is similar to the 200 HTTP status codes (from 200 to 299). Those "200" status codes mean that somehow there was a "success" in the request.
    
    The status codes in the 400 range mean that there was an error from the client.
    
    Remember all those **"404 Not Found"** errors (and jokes)?
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

    @OptIn(KaAnalysisApiInternals::class)
    public typealias KtCallResolver = KaResolver
    
    @OptIn(KaAnalysisApiInternals::class)
    public interface KaResolverMixIn : KaSessionMixIn {
        @Deprecated(
            message = "The API will be changed soon. Use 'resolveCallOld()' in a transit period",
            replaceWith = ReplaceWith("resolveCallOld()"),
        )
        public fun KtElement.resolveCall(): KaCallInfo? = resolveCallOld()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top