Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 5,424 for ccompile (0.18 sec)

  1. src/cmd/compile/internal/ssa/testdata/hist.go

    // license that can be found in the LICENSE file.
    
    // This is the input program for an end-to-end test of the DWARF produced
    // by the compiler. It is compiled with various flags, then the resulting
    // binary is "debugged" under the control of a harness.  Because the compile+debug
    // step is time-consuming, the tests for different bugs are all accumulated here
    // so that their cost is only the time to "n" through the additional code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/AbstractDaemonCompiler.java

     */
    package org.gradle.api.internal.tasks.compile.daemon;
    
    import com.google.common.collect.Lists;
    import org.gradle.api.tasks.WorkResult;
    import org.gradle.api.tasks.compile.BaseForkOptions;
    import org.gradle.internal.UncheckedException;
    import org.gradle.language.base.internal.compile.CompileSpec;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.workers.internal.DaemonForkOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

            spec()
            builder.build()
        }
    
        Object compiles() {
            def sources = generatedCode.values().collect {
                new TestClassSource(it.className, it.generatedCode)
            }
            def srcDir = tmpDir.createDir("src")
            def dstDir = tmpDir.createDir("dst")
            SimpleGeneratedJavaClassCompiler.compile(srcDir, dstDir, sources, classPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue22327.go

    // compile
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Using a multi-result function as an argument to
    // append should compile successfully. Previously there
    // was a missing *int -> interface{} conversion that caused
    // the compiler to ICE.
    
    package p
    
    func f() ([]interface{}, *int) {
    	return nil, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 22 17:30:57 UTC 2018
    - 448 bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JdkToolsTest.groovy

     */
    
    package org.gradle.api.internal.tasks.compile
    
    
    import spock.lang.Specification
    import spock.lang.Subject
    
    import javax.tools.JavaCompiler
    
    class JdkToolsTest extends Specification {
        @Subject
        JdkTools current = new JdkTools([])
    
        def "can get java compiler"() {
            def compiler = current.systemJavaCompiler
    
            expect:
            compiler instanceof JavaCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerDaemonReuseIntegrationTest.groovy

            buildFile << newSourceSet("main2")
        }
    
        String compileTaskPath(String sourceSet) {
            if (sourceSet == "main") {
                return ":compile${component.languageName.capitalize()}"
            } else {
                return ":compile${sourceSet.capitalize()}${component.languageName.capitalize()}"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gccgo_m.txt

    # It's absurd, but builds with -compiler=gccgo used to fail to build module m.
    # golang.org/issue/34358
    
    env GO111MODULE=off
    
    [short] skip
    [cross] skip # gccgo can't necessarily cross-compile
    
    cd m
    go build
    exists m$GOEXE
    rm m$GOEXE
    [exec:gccgo] go build -compiler=gccgo
    [exec:gccgo] exists m$GOEXE
    
    -- m/go.mod --
    module m
    -- m/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 14:52:30 UTC 2022
    - 368 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_cache_compile.txt

    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # Building trivial non-main package should run compiler the first time.
    go build -x lib.go
    stderr '(compile|gccgo)( |\.exe).*lib\.go'
    
    # ... but not again ...
    go build -x lib.go
    ! stderr '(compile|gccgo)( |\.exe).*lib\.go'
    
    # ... unless we use -a.
    go build -a -x lib.go
    stderr '(compile|gccgo)( |\.exe)'
    
    -- lib.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 430 bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.java.compile.jpms.compile
    
    import org.gradle.java.compile.jpms.AbstractJavaModuleCompileIntegrationTest
    import org.gradle.test.precondition.TestPrecondition
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizerTest.groovy

            then:
            normalized == expected
        }
    
        def "successfully normalizes Scala compiler warning"() {
            given:
            String input = """
    > Task :app:compileJava NO-SOURCE
    > Task :app:compileScala
    [Warn] : -target is deprecated: Use -release instead to compile against the correct platform API.
    one warning found
    
    > Task :app:processResources NO-SOURCE
    > Task :app:classes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top