Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 186 for Lyding (2.14 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/GitIgnoreGeneratorTest.groovy

            then:
            gitignoreFile.file
            gitignoreFile.text == toPlatformLineSeparators("""ignoredFolder/
    ${getGeneratedGitignoreContent()}""")
        }
    
        def "avoid adding duplicated entries when .gitignore file already exists [#entry]"() {
            setup:
            def generator = new GitIgnoreGenerator()
            gitignoreFile << entry
    
            when:
            generator.generate(settings, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:17:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/CircularEvaluationSpec.groovy

            }
    
            void assertExceptionHasExpectedCycle(CircularEvaluationException ex, def provider, def property) {
                // A Property may wrap the provider in the type-adapting one, adding an extra item to the evaluation chain.
                // To account for this, we only check the beginning of the chain, and its last element.
                assert ex.evaluationCycle[0..1] == [provider, property]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

        }
    
        public GitFileRepository(File parentDirectory) {
            this("repo", parentDirectory);
        }
    
        /**
         * Returns the underlying Git object from JGit.
         *
         * Please consider adding more convenience methods to this fixture over using "raw" Git APIs.
         */
        public Git getGit() {
            return git;
        }
    
        @Override
        public String getName() {
            return repoName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/ZipHasherTest.groovy

            return new MetaInfAwareClasspathResourceHasher(propertiesFileHasher, manifestResourceFilter)
        }
    
        def "adding an empty jar inside another jar changes the hashcode"() {
            given:
            def outerContent = tmpDir.createDir("outer")
            def outer = tmpDir.file("outer.jar")
            outerContent.zipTo(outer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasherTest.groovy

            "png content"             | content.PNG_CONTENT
            "jpg content"             | content.JPG_CONTENT
            "java class file content" | content.CLASS_FILE_CONTENT
        }
    
        def "always calls delegate when line ending sensitivity is set to DEFAULT"() {
            def file = file('foo') << content.textWithLineEndings('\r\n')
            def delegate = Mock(LineEndingNormalizingFileSystemLocationSnapshotHasher)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginArtifactRepositories.java

        public DefaultPluginArtifactRepositories(Factory<DependencyResolutionServices> factory, RepositoryHandlerInternal sharedRepositories) {
            // Create a copy of the shared repository container, so that mutations (eg adding the portal repo) are not reflected in the shared container
            dependencyResolutionServices = factory.create();
            this.sharedRepositories = sharedRepositories;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/ResolutionFailureDescriber.java

    import java.util.Optional;
    
    /**
     * Describe a certain type of resolution failure, by providing concise and specific human-readable
     * information to the message of the resulting exception, and also adding resolution suggestions if possible.
     *
     * @param <FAILURE> the type of failure that this describer can describe
     */
    public interface ResolutionFailureDescriber<FAILURE extends ResolutionFailure> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_precompiled.adoc

    You can provide configuration for your plugin by adding an extension object to this container.
    
    Let's update our `greetings` example:
    
    ====
    include::sample[dir="snippets/plugins/greeting/kotlin", files="buildSrc/src/main/kotlin/greetings.gradle.kts[tags=create-extension]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top