Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for set (0.25 sec)

  1. platforms/core-configuration/declarative-dsl-core/build.gradle.kts

    }
    
    description = "Common shared classes used by the Declarative DSL"
    
    tasks.withType<KotlinCompile>().configureEach {
        compilerOptions {
            apiVersion.set(KotlinVersion.KOTLIN_1_9)
            languageVersion.set(KotlinVersion.KOTLIN_1_9)
        }
    }
    
    dependencies {
        api(project(":declarative-dsl-tooling-models"))
    
        api(libs.kotlinCompilerEmbeddable)
        api(libs.kotlinStdlib)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

                    runtimeClassPathArtifactCollection.set(configurations["runtimeClasspath"].incoming.artifacts)
                    sourceCodeOutputDir.set(it)
                    metadataOutputDir.set(accessorsMetadata)
                    compiledPluginsBlocksDir.set(compiledPluginsBlocks)
                    @Suppress("DEPRECATION")
                    strict.set(
                        providers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

        }
    
        @Internal
        protected
        fun getContributorsFromPullRequests(): Set<GitHubUser> {
            if (!milestone.isPresent) {
                throw IllegalStateException("Milestone not set: please rerun the task with `--milestone <milestone>`")
            }
            val prs: MutableList<GitHubPullRequest> = mutableListOf()
            (1..10).forEach { page ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

    /**
     * Test Fixtures Plugin.
     *
     * Configures the Project as a test fixtures producer if `src/testFixtures` is a directory:
     * - adds a new `testFixtures` source set which should contain utilities/fixtures to assist in unit testing
     *   classes from the main source set,
     * - the test fixtures are automatically made available to the test classpath.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

            override val defaultImports: Set<FqName> = setOf()
    
            private
            fun readResolve(): Any = Empty
        }
    }
    
    
    @Serializable
    @SerialName("data")
    data class DefaultDataClass(
        override val name: FqName,
        override val supertypes: Set<FqName>,
        override val properties: List<DataProperty>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/FunctionSinceRepository.kt

    import java.io.File
    import java.io.StringReader
    import java.net.URLClassLoader
    
    
    /**
     * Provides `@since` javadoc tag value from sources.
     */
    class FunctionSinceRepository(classPath: Set<File>, sourcePath: Set<File>) : AutoCloseable {
    
        // https://github.com/paul-hammant/qdox/issues/182
        private
        val filesWithUnsupportedAnnotations = listOf(
            "Transformer.java",
            "Provider.java",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/AnalyzeAndShade.kt

        val minified = Attribute.of("minified", Boolean::class.javaObjectType)
    }
    
    
    class JarAnalyzer(
        private val shadowPackage: String,
        private val keepPackages: Set<String>,
        private val unshadedPackages: Set<String>,
        private val ignorePackages: Set<String>
    ) {
    
        fun analyze(jarFile: File, classesDir: File, manifestFile: File, buildReceipt: File): ClassGraph {
            val classGraph = classGraph()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptClassPathProvider.kt

    private
    class ClassLoaderClassPathCache {
    
        private
        val cachedClassPaths = hashMapOf<ClassLoader, Set<File>>()
    
        fun of(classLoader: ClassLoader): Set<File> =
            cachedClassPaths.getOrPut(classLoader) {
                classPathOf(classLoader)
            }
    
        private
        fun classPathOf(classLoader: ClassLoader): Set<File> {
            val classPathFiles = mutableSetOf<File>()
    
            object : ClassLoaderVisitor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt

    
    @CacheableTransform
    abstract class Minify : TransformAction<Minify.Parameters> {
    
        interface Parameters : TransformParameters {
            @get:Input
            var keepClassesByArtifact: Map<String, Set<String>>
        }
    
        @get:PathSensitive(PathSensitivity.NAME_ONLY)
        @get:InputArtifact
        abstract val artifact: Provider<FileSystemLocation>
    
        override fun transform(outputs: TransformOutputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractor.kt

        val inlineFunctions: MutableSet<String> = HashSet()
        val internalFunctions: MutableSet<String> = HashSet()
    
        override fun writeClass(classMember: ClassMember, methods: Set<MethodMember>, fields: Set<FieldMember>, innerClasses: Set<InnerClassMember>) {
            classMember.annotations.firstOrNull {
                it.name == kotlinMetadataAnnotationSignature
            }?.let {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top