Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,307 for additional (0.18 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/configurationCacheProblemsGroovy.sample.conf

      expect-failure: true
      expected-output-file: fail.out
      allow-additional-output: true
      allow-disordered-output: true
    },{
      executable: gradle
      args: "--rerun-tasks --configuration-cache-problems=warn someTask -DsomeDestination=dest"
      expect-failure: false
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProcessOutputValueSource.java

             * both full environment and additional variables.
             *
             * @return the full environment property, can be not set
             * @see org.gradle.process.BaseExecSpec#setEnvironment(Map)
             */
            MapProperty<String, Object> getFullEnvironment();
    
            /**
             * The additional environment variables to be applied on top of the current environment when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/fixtures/tests/javaTestFixtures.sample.conf

        args: dependencyInsight --configuration functionalTestClasspath --dependency gson
        expected-output-file: dependencyInsight.out
        allow-additional-output: true
    },{
        execution-subdirectory: lib
        executable: gradle
        args: usages
        expected-output-file: usages.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 354 bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemReporter.java

     *
     * @since 8.6
     */
    @Incubating
    public interface ProblemReporter {
    
        /**
         * Configures and reports a new problem.
         * <p>
         * The spec must specify the problem label and the category. Any additional configuration is optional.
         *
         * @param spec the problem configuration
         * @since 8.6
         */
        void reporting(Action<ProblemSpec> spec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 10:28:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildUpToDateWhen.sample.conf

    commands: [{
        executable: gradle
        args: clean alwaysInstrumentClasses
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: alwaysInstrumentClasses
        expected-output-file: incrementalBuildUpToDateWhenAgain.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 340 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/kotlin/build.gradle.kts

    plugins {
        idea
        `java-library`
    }
    
    // tag::mark-additional-sourcesets-as-test[]
    sourceSets {
        create("intTest") {
            java {
                setSrcDirs(listOf("src/integration"))
            }
        }
    }
    
    idea {
        module {
            testSources.from(sourceSets["intTest"].java.srcDirs)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 341 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/configurationCache/noProblem/tests/configurationCacheNoProblem.sample.conf

    commands: [{
      executable: gradle
      args: help
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
      args: help
      expected-output-file: load.out
      allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 220 bytes
    - Viewed (0)
  10. 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)
Back to top