Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for Change (0.24 sec)

  1. platforms/documentation/docs/src/docs/release/notes.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleOutOfBlockModificationListener.kt

         *
         * See [KotlinModificationTrackerFactory.createProjectWideOutOfBlockModificationTracker] for an explanation of out-of-block
         * modifications.
         *
         * This event may be published for any and all source code changes, not just out-of-block modifications, to simplify the implementation
         * of modification detection.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification(module: KtModule)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 987 bytes
    - Viewed (0)
  3. doc/next/2-language.md

    ## Changes to the language {#language}
    
    <!-- go.dev/issue/61405, CL 557835, CL 584596 -->
    Go 1.23 makes the (Go 1.22) ["range-over-func" experiment](/wiki/RangefuncExperiment) a part of the language.
    The "range" clause in a "for-range" loop now accepts iterator functions of the following types
    
    	func(func() bool)
    	func(func(K) bool)
    	func(func(K, V) bool)
    
    as range expressions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 757 bytes
    - Viewed (0)
  4. docs/en/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: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         *
         * While [abbreviatedType] is available for all [KaType]s, it can currently only be present in [KaClassType]s. However, abbreviated
         * types are a general concept and if the type system changes (e.g. with denotable union/intersection types), other kinds of types may
         * also be expanded from a type alias. This would allow more kinds of types to carry an abbreviated type.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top