Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,958 for additional (0.21 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensibleDynamicObjectTest.java

        public void hasAdditionalProperty() {
            Bean bean = new Bean();
    
            assertFalse(bean.hasProperty("additional"));
    
            bean.defineProperty("additional", "value");
            assertTrue(bean.hasProperty("additional"));
    
            bean.setProperty("additional", null);
            assertTrue(bean.hasProperty("additional"));
        }
    
        @Test
        public void canGetAndSetExtraProperty() {
            Bean bean = new Bean();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 33.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/configurationCacheProblemsFixedReuse.sample.conf

      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: load.out
      allow-additional-output: true
    }, {
       executable: gradle
       args: "--rerun-tasks someTask -DsomeDestination=another"
       expected-output-file: load-another.out
       allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 469 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/configurationCacheProblemsFixed.sample.conf

      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: load.out
      allow-additional-output: true
    }, {
       executable: gradle
       args: "--rerun-tasks someTask -DsomeDestination=another"
       expected-output-file: store-another.out
       allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core-api/src/main/java/org/gradle/api/component/AdhocComponentWithVariants.java

    /**
     * A component which can declare additional variants corresponding to
     * features. When published to Maven POMs, the dependencies of those variants
     * are exposed as optional dependencies. When published to Gradle metadata, the
     * variants are published as is.
     *
     * @since 5.3
     */
    public interface AdhocComponentWithVariants extends SoftwareComponent {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 19 14:20:53 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top