Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for Change (0.07 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

                    if (parentPath != referrerProject.path) {
                        // even though the task was not found, the current project is coupled with the other project:
                        // if the configuration of that project changes, the result of this call might be different
                        val coupledProjects = listOfNotNull(parentPath?.let { referrerProject.findProject(it) })
                        reportCrossProjectTaskAccess(coupledProjects, path)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. docs/pt/docs/fastapi-cli.md

     <span style="background-color:#C4A000"><font color="#2E3436">╰─────────────────────────────────────────────────────╯</font></span>
    
    <font color="#4E9A06">INFO</font>:     Will watch for changes in these directories: [&apos;/home/user/code/awesomeapp&apos;]
    <font color="#4E9A06">INFO</font>:     Uvicorn running on <b>http://127.0.0.1:8000</b> (Press CTRL+C to quit)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt

     * Abstract base class for [Task][org.gradle.api.Task]s that verify and manipulate the given accepted API changes file.
     */
    @CacheableTask
    abstract class AbstractAcceptedApiChangesMaintenanceTask : DefaultTask() {
    
        /**
         * A directory that contains jsons with accepted API changes.
         * Any json is a directory is considered to contain accepted API changes.
         */
        @get:InputDirectory
        @get:PathSensitive(PathSensitivity.RELATIVE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinAlwaysAccessibleLifetimeToken.kt

            return onCreatedTimeStamp == modificationTracker.modificationCount
        }
    
        override fun getInvalidationReason(): String {
            if (onCreatedTimeStamp != modificationTracker.modificationCount) return "PSI has changed since creation"
            error("Getting invalidation reason for valid validity token")
        }
    
        override fun isAccessible(): Boolean {
            return true
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinReadActionConfinementLifetimeToken.kt

            return onCreatedTimeStamp == modificationTracker.modificationCount
        }
    
        override fun getInvalidationReason(): String {
            if (onCreatedTimeStamp != modificationTracker.modificationCount) return "PSI has changed since creation."
            error("Cannot get an invalidation reason for a valid lifetime token.")
        }
    
        override fun isAccessible(): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

        /**
         * A name of the variable with respect to the `@ParameterName` annotation. Can be different from the [KaVariableLikeSymbol.name].
         *
         * Some variables can have their names changed by special annotations like `@ParameterName(name = "newName")`. This is used to preserve
         * the names of the lambda parameters in the situations like this:
         *
         * ```
         * // compiled library
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    "Contribution" means:
    
      a) in the case of the initial Contributor, the initial content
         Distributed under this Agreement, and
    
      b) in the case of each subsequent Contributor:
         i) changes to the Program, and
         ii) additions to the Program;
      where such changes and/or additions to the Program originate from
      and are Distributed by that particular Contributor. A Contribution
      "originates" from a Contributor if it was added to the Program by
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                                AcceptedApiChanges.parse(listOf("{acceptedApiChanges:[]}")),
                                rootProject.files("$sourceRoots"),
                                "2.0",
                                file("test-api-changes.json"),
                                rootProject.layout.projectDirectory,
                                newUpgradedPropertiesFile.get().asFile,
                                oldUpgradedPropertiesFile.get().asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top