Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 186 for Lyding (0.09 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginTasksIntegrationTest.kt

        @Test
        @Requires(
            IntegTestPreconditions.NotEmbeddedExecutor::class,
            reason = "ktlint plugin issue in embedded mode"
        )
        fun `generated code follows kotlin-dsl coding conventions`() {
    
            withBuildScript(
                """
                plugins {
                    `kotlin-dsl`
                    id("org.gradle.kotlin-dsl.ktlint-convention") version "0.9.0"
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 10:30:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmFeatureTest.groovy

            project.tasks.getByName(feature.sourceSet.sourcesJarTaskName)
        }
    
        def "can create multiple features in a project without adding them to a component"() {
            given:
            project.plugins.apply(JavaBasePlugin)
            def ext = project.getExtensions().getByType(JavaPluginExtension)
    
            SourceSet one = ext.getSourceSets().create("one")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingResourceHasherTest.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(ResourceHasher)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingJavaCompilerTest.groovy

                assert spec.sourceFiles == files("Person1.java", "Person2.java")
                assert spec.sourceFiles instanceof ImmutableSet
            }
        }
    
        def "silently excludes source files not ending in .java"() {
            spec.sourceFiles = files("House.scala", "Person1.java", "package.html", "Person2.java")
    
            when:
            compiler.execute(spec)
    
            then:
            1 * target.execute(spec) >> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    - **Windows**: C:\Users\[username]\.m2
    
    A publication destined for a Maven repository normally includes:
    
    - One or more artifacts
    - The Gradle Module Metadata
    - The Maven POM file
    
    Apply the plugin by adding `maven-publish` to the plugins block in `build.gradle(.kts)`:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    plugins {
        // Apply the application plugin to add support for building a CLI application in Java.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_java_projects.adoc

    ====
    
    === Archives as inputs
    
    It is common for the integration tests to depend on your packaged application.
    If this happens to be a zip or tar archive, then adding it as an input to the integration test task may lead to cache misses.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

            packDir."$packType"(sourceFile, readonly)
    
            then:
            succeeds("unpack")
            executedAndNotSkipped(":unpack")
            outputDir.file("A").text == "original"
    
            when:
            // adding a new file to the archive instead of modifying 'A' because
            // zipTo won't update the zip file if Ant's zip task thinks the files
            // have not changed.
            packDir.file("B").text = "new-file"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/WindowsStartScriptGeneratorTest.groovy

            // Windows line endings are made up of two characters,
            // we should see an equal number of lines unless
            // the generator is using the wrong line ending entirely
            // or has generated some lines with one or the other character
            carriageLineEndings == newlineEndings
            windowsLineEndings == newlineEndings
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyModuleResolveMetadataBuilderTest.groovy

        }
    
        private static IvyArtifactName ivyArtifact(String name, String type, String ext, String classifier = null) {
            return new DefaultIvyArtifactName(name, type, ext, classifier)
        }
    
        def "prevents adding artifact without configurations"() {
            def unattached = ivyArtifact("foo", "jar", "ext")
            md.addConfiguration(new Configuration("runtime"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuterTest.groovy

            when:
            def allArgs = executer.getAllArgs()
    
            then:
            !allArgs.contains("--daemon")
            allArgs.contains("--no-daemon")
        }
    
        def "when --foreground argument is added, it skips adding --daemon/--no-daemon"() {
            when:
            executer.withArgument("--foreground")
            def allArgs = executer.getAllArgs()
    
            then:
            !allArgs.contains("--daemon")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top