Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for resources (0.2 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/classycle/classycle_report_resources.zip

    Jendrik Johannes <******@****.***> 1607501645 +0100
    ZIP Archive
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 23.4K bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                it.value.isNotEmpty()
            } ?: emptyMap()
    
        /**
         * Returns any temporary directories used to extract resources from jars.
         *
         * These directories will be created as siblings of the randomly assigned test root directories, with the fixed name {@code tmp-extracted-resources}.
         */
        private
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jul 28 16:19:47 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-init-template-versions.gradle.kts

    tasks {
        register<UpdateInitPluginTemplateVersionFile>("updateInitPluginTemplateVersionFile") {
            group = "Build init"
            libraryVersionFile = layout.projectDirectory.file(
                "src/main/resources/org/gradle/buildinit/tasks/templates/library-versions.properties"
            )
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jan 20 15:24:40 GMT 2023
    - 378 bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.api-parameter-names-index.gradle.kts

        classpath.from(tasks.named<GroovyCompile>("compileGroovy"))
        destinationFile = project.layout.buildDirectory.file(
            moduleIdentity.baseName.map { "generated-resources/$it-parameter-names/$it-parameter-names.properties" }
        )
    }
    
    main.output.dir(
        parameterNamesIndex.map { it.destinationFile.get().asFile.parentFile }
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Jan 20 15:24:40 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  5. README.md

    * Have a look at the [Samples](https://docs.gradle.org/current/samples/index.html)
    * Checkout the [Community Resources](https://gradle.org/resources/) as well
    * Join our [Slack Channel](https://gradle.com/slack-invite)
    
    
    ## Contributing
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Mar 24 20:49:08 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserManual.java

         */
        public abstract DirectoryProperty getStagingRoot();
    
        public abstract DirectoryProperty getStagedDocumentation();
    
        /**
         * Additional resources to include in the final docs
         */
        public abstract ConfigurableFileCollection getResources();
    
        /**
         * A collection of the final rendered user manual
         */
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

    import org.gradle.api.internal.plugins.StartScriptGenerator
    import org.gradle.api.internal.plugins.StartScriptTemplateBindingFactory
    import org.gradle.api.internal.resources.FileCollectionBackedTextResource
    import org.gradle.api.logging.LogLevel
    import org.gradle.api.tasks.CacheableTask
    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.InputFiles
    import org.gradle.api.tasks.Internal
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Fri Feb 24 10:25:27 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

    }
    
    val rules by configurations.creating {
        isVisible = false
        isCanBeConsumed = false
    
        attributes {
            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.RESOURCES))
        }
    }
    
    val groovyVersion = GroovySystem.getVersion()
    val isAtLeastGroovy4 = VersionNumber.parse(groovyVersion).major >= 4
    val codenarcVersion = if (isAtLeastGroovy4) "3.1.0-groovy-4.0" else "3.1.0"
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 30 10:26:21 GMT 2024
    - 6K bytes
    - Viewed (0)
  9. .editorconfig

    [*.md]
    trim_trailing_whitespace = false
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [gradle/verification-metadata.xml]
    indent_size = 3
    
    [subprojects/launcher/src/main/resources/release-features.txt]
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Oct 02 11:48:19 GMT 2023
    - 643 bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/extensions.kt

    }
    
    /**
     * We have some "shared" host where a Linux build agent and a Windows build agent
     * both run on the same bare metal. Some builds require exclusive access to the
     * hardware resources (e.g. performance test).
     */
    fun Requirements.requiresNotSharedHost() {
        doesNotContain("agent.host.type", "shared")
    }
    
    /**
     * This is an undocumented location that forbids anonymous access.
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
Back to top