Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,090 for additional (0.2 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemSpec.java

        /**
         * Attaches additional data describing the problem.
         * <p>
         * Only the types listed for {@link AdditionalData} can be used as arguments, otherwise an invalid problem report will be created.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.resolve.extensions
    
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    
    /**
     * Represents the Kotlin file which provides additional, generated declarations for resolution.
     *
     * All member implementations should:
     * - consider caching the results for subsequent invocations.
     * - be lightweight and not build the whole file structure inside.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/index.md

    # Advanced User Guide
    
    ## Additional Features
    
    The main [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank} should be enough to give you a tour through all the main features of **FastAPI**.
    
    In the next sections you will see other options, configurations, and additional features.
    
    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/path-operation-advanced-configuration.md

    !!! tip
        This is a low level extension point.
    
        If you only need to declare additional responses, a more convenient way to do it is with [Additional Responses in OpenAPI](additional-responses.md){.internal-link target=_blank}.
    
    You can extend the OpenAPI schema for a *path operation* using the parameter `openapi_extra`.
    
    ### OpenAPI Extensions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/PromotionProjectTests.kt

            val expectedGradleParams = """-PcommitId=%dep.Gradle_Release_Check_Stage_ReadyforNightly_Trigger.build.vcs.number%  "-PgitUserName=bot-teamcity" "-PgitUserEmail=******@****.***" $pluginPortalUrlOverride %additional.gradle.parameters%"""
    
            val checkReady = gradleStep(steps, 0)
            checkReady.assertTasks("prepReleaseNightly checkNeedToPromote")
            assertEquals(expectedGradleParams, checkReady.gradleParams)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            then:
            assertTransformed("root.blue", "root.additional.blue", "a.additional.blue", "a.jar")
            outputContains("files = [root.additional.blue.green, root.blue.green, a.jar.green, a.additional.blue.green]")
            outputContains("artifacts = [root.additional.blue.green (root.additional.blue), root.blue.green (root.blue), a.jar.green (project :a), a.additional.blue.green (a.additional.blue)]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/kubeconfig.go

    	Kubeconfig file utilities.
    	`)
    
    	userKubeconfigLongDesc = cmdutil.LongDesc(`
    	Output a kubeconfig file for an additional user.
    	`)
    
    	userKubeconfigExample = cmdutil.Examples(`
    	# Output a kubeconfig file for an additional user named foo
    	kubeadm kubeconfig user --client-name=foo
    
    	# Output a kubeconfig file for an additional user named foo using a kubeadm config file bar
    	kubeadm kubeconfig user --client-name=foo --config=bar
    	`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/AdditionalData.java

    package org.gradle.api.problems.internal;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    /**
     * Marker interface for additional data that can be attached to a {@link Problem}.
     * <p>
     * This is effectively a sealed interface that is used to restrict the types of additional data that can be attached to a problem.
     * The list interfaces supported by the problems API are:
     * <ul>
     *     <li>{@link GeneralData}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/runtime/debug/stack.go

    }
    
    // SetCrashOutput configures a single additional file where unhandled
    // panics and other fatal errors are printed, in addition to standard error.
    // There is only one additional file: calling SetCrashOutput again overrides
    // any earlier call.
    // SetCrashOutput duplicates f's file descriptor, so the caller may safely
    // close f as soon as SetCrashOutput returns.
    // To disable this additional crash output, call SetCrashOutput(nil).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         *
         * @return the failure
         * @since 8.8
         */
        @Nullable
        FailureContainer getFailure();
    
        /**
         * Returns the additional data associated with this problem.
         *
         * @return the additional data
         * @since 8.9
         */
        AdditionalData getAdditionalData();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top