Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for applicationId (0.51 sec)

  1. samples/bookinfo/src/details/details.rb

            end
            details = get_book_details(id, headers)
            res.body = details.to_json
            res['Content-Type'] = 'application/json'
        rescue => error
            res.body = {'error' => error}.to_json
            res['Content-Type'] = 'application/json'
            res.status = 400
        end
    end
    
    # TODO: provide details on different books.
    def get_book_details(id, headers)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         * alias application, not simply `MyList`.
         *
         * If this [KaType] is an unexpanded type alias application, [abbreviatedType] is `null`. Not all type alias applications are currently
         * expanded right away and the Analysis API makes no guarantees about the specific circumstances.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

         */
        public val psi: KtCallElement?
    
        /**
         * [AnnotationUseSiteTarget] to which annotation was applied. May be not-null only for annotation applications for declarations.
         *
         * See more details in [Kotlin Documentation](https://kotlinlang.org/docs/annotations.html#annotation-use-site-targets) for more information about annotation targets.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-example-client/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.internal.java")
        id("application")
    }
    
    description = "Example client application using the build-cache library"
    
    dependencies {
        implementation(projects.buildCache)
        implementation(projects.buildCacheBase)
        implementation(projects.buildCacheLocal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains the Application plugin, and its supporting classes.  This plugin is used for creating runnable Java application projects."
    
    dependencies {
        api(project(":core"))
        api(project(":core-api"))
    
        api(libs.inject)
        api(libs.jsr305)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValueRenderer.kt

            append(value.callableId?.asSingleFqName()?.asString())
        }
    
        private fun StringBuilder.renderAnnotationConstantValue(application: KaAnnotationApplicationValue) {
            renderAnnotationApplication(application.annotationValue)
        }
    
        private fun StringBuilder.renderAnnotationApplication(value: KaAnnotation) {
            append(value.classId)
            if (value.arguments.isNotEmpty()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/AbstractAnalysisApiSpecificAnnotationOnDeclarationTest.kt

                val renderer = DebugSymbolRenderer()
                fun renderAnnotation(application: KaAnnotation): String = buildString {
                    appendLine("${KtDeclaration::class.simpleName}: ${ktDeclaration::class.simpleName} ${ktDeclaration.name}")
                    append(renderer.renderAnnotationApplication(analysisSession, application))
                }
    
                val rawList = renderAnnotation(annotationList[classId].single())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. docs/en/docs/fastapi-cli.md

    <font color="#4E9A06">INFO</font>:     Started server process [<font color="#06989A">2265873</font>]
    <font color="#4E9A06">INFO</font>:     Waiting for application startup.
    <font color="#4E9A06">INFO</font>:     Application startup complete.
    ```
    
    </div>
    
    That command line program called `fastapi` is **FastAPI CLI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/build.gradle.kts

        testImplementation(testFixtures(project(":snapshots")))
    
        testImplementation(libs.commonsIo)
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Uses application plugin.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/build.gradle.kts

        integTestImplementation(testFixtures(project(":build-cache")))
        integTestImplementation(libs.jetty)
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Uses application plugin.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top