Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 725 for Compilation (0.23 sec)

  1. platforms/documentation/docs/src/snippets/java/crossCompilation/groovy/settings.gradle

    rootProject.name = 'cross-compilation'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  2. src/debug/dwarf/entry.go

    	cu           *Entry // current compilation unit
    }
    
    // Reader returns a new Reader for [Data].
    // The reader is positioned at byte offset 0 in the DWARF “info” section.
    func (d *Data) Reader() *Reader {
    	r := &Reader{d: d}
    	r.Seek(0)
    	return r
    }
    
    // AddressSize returns the size in bytes of addresses in the current compilation
    // unit.
    func (r *Reader) AddressSize() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/performance/resolveAtBuildTime/tests/copyFiles.out

    >> Compilation deps: [commons-lang3-3.11.jar]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 46 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    image::images/C4_1_Context.svg[]
    
    ## Level 2: Container diagram
    
    When used for the compilation of scripts of a Gradle build, the Kotlin DSL Provider compiles scripts using an embedded Kotlin compiler.
    
    When used for the compilation of Kotlin source sets, e.g. in `buildSrc`, the `kotlin-dsl` plugin provide Kotlin DSL features to source sets and compiles Kotlin code using the Kotlin Gradle Plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcCompilationClasspathIntegrationTest.groovy

            if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_16)) {
                return "1.6"
            }
            return MIN_SUPPORTED_COMPILATION_CLASSPATH_VERSION
        }
    
        def "compilation classpath can be specified for a CodeNarc task"() {
            given:
            buildFileWithCodeNarcAndCompilationClasspath(supportedCompilationClasspathVersion())
            cloneWithoutCloneableRuleEnabled()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ForceScalaCompileIntegrationTest.groovy

        def setup() {
            executer.withRepositoryMirrors()
        }
    
        @Issue("gradle/gradle#13224")
        def 'disabling incremental compilation does not produce an analysis file'() {
            given:
            buildFile << """
    plugins {
        id 'scala'
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/groovy/settings.gradle

    rootProject.name = 'incremental-compilation'
    include("library")
    include("app")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 132 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/groovy/settings.gradle

    rootProject.name = 'compilation-avoidance'
    include("ast-transformation")
    include("ast-transformation-consumer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 165 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/kotlin/settings.gradle.kts

    rootProject.name = "compilation-avoidance"
    include("ast-transformation")
    include("ast-transformation-consumer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 165 bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftCachingIntegrationTest.groovy

                }
            '''
            app.logLibrary.writeToProject(project.file('log'))
            app.library.writeToProject(project.file('hello'))
            app.application.writeToProject(project)
        }
    
        def 'compilation can be cached'() {
            setupProject()
            def allCompileTasks = ['', ':hello', ':log'].collect { compileTask(it, buildType) } as String[]
    
            when:
            withBuildCache().run compileTask(buildType)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top