Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 186 for Lyding (0.12 sec)

  1. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies/kotlin/build.gradle.kts

    }
    
    // tag::configure-suite-dependencies[]
    testing {
        suites {
            val test by getting(JvmTestSuite::class) { // <1>
                dependencies {
                    // Note that this is equivalent to adding dependencies to testImplementation in the top-level dependencies block
                    implementation("org.assertj:assertj-core:3.21.0") // <2>
                    annotationProcessor("com.google.auto.value:auto-value:1.9") // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompilerTest.groovy

            spec.groovyCompileOptions = new MinimalGroovyCompileOptions(TestUtil.instantiatorFactory().decorateLenient(services).newInstance(GroovyCompileOptions.class))
        }
    
        def "silently excludes source files not ending in .java or .groovy by default"() {
            when:
            compiler.execute(spec)
    
            then:
            1 * target.execute(spec) >> {
                assert spec.sourceFiles == files('Person1.java', 'Person2.groovy')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <!--</module>-->
    
            <!-- Coding -->
            <module name="CovariantEquals"/>
            <module name="DefaultComesLast"/>
            <module name="EmptyStatement"/>
            <module name="EqualsHashCode"/>
            <module name="ExplicitInitialization"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingSet.java

            }
            return result;
        }
    
        @Override
        @SuppressWarnings("unchecked")
        protected Set<E> delegate() {
            // The entrySet/keySet disallow adding elements to the set, making it covariant, so downcast is safe there.
            return (Set<E>) delegate;
        }
    
        private void reportAggregatingAccess() {
            listener.onAggregatingAccess();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/FileCollectionFingerprinterRegistrations.java

                    propertiesFileFilters,
                    stringInterner,
                    lineEndingSensitivity
                )
            );
        }
    
        /**
         * These fingerprinters do not care about line ending or directory sensitivity at all
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 16:58:45 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * into the implementation, similar to tasks and plugins.
     * It can be done by adding a parameter to the constructor and annotating the
     * constructor with the {@code @Inject} annotation:
     * <pre>
     * public abstract class MyValueSource implements ValueSource&lt;String, ValueSourceParameters.None&gt; {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

            and:
            level == AntMessagePriority.DEBUG
        }
    
        @Issue('GRADLE-3511')
        def 'Filename #filename is properly masked when adding it as #antType to an ant task'(String filename, antType) {
            given:
            def dirname = 'somedir$$with'
            def dirAndFile = "${dirname}/${filename}"
            project.file(dirname).mkdir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    ----
    
    You'll notice that the resulting JAR file at `${subprojectName.raw}/build/libs/${subprojectName.raw}-0.1.0.jar` contains the version as expected.
    
    Another common requirement is customizing the manifest file, typically by adding one or more attributes.
    Let's include the library name and version in the manifest file by link:{userManualPath}/more_about_tasks.html#sec:configuring_tasks[configuring the `jar` task].
    Add the following to the end of your build script:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfigurationContainer.java

    /**
     * The set of {@link IvyConfiguration}s that will be included in the {@link IvyPublication}.
     *
     * Being a {@link org.gradle.api.NamedDomainObjectContainer}, a {@code IvyConfigurationContainer} provides
     * convenient methods for adding, querying, filtering, and applying actions to the set of {@link IvyConfiguration}s.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'ivy-publish'
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/BuildControllers.java

         * Blocks until all scheduled tasks have completed.
         */
        ExecutionResult<Void> execute();
    
        /**
         * Locates the controller for a given build, adding it if not present.
         */
        BuildController getBuildController(BuildState build);
    
        @Override
        void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 16 02:23:59 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top