Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,071 for compilers (0.35 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/logopt"
    	"cmd/compile/internal/reflectdata"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/s390x"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"io"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts

    tasks.withType<JavaCompile>().configureEach {
        // Generated classes may not adhere to the strict no-warning policy that we apply to handwritten code
        // For example, external JMH plugin generates code that produces compiler warnings
        if (!name.contains("CompileGeneratedClasses")) {
            options.compilerArgs.addAll(strictCompilerArgs)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:31 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. test/codegen/README

    // license that can be found in the LICENSE file.
    
    The codegen directory contains code generation tests for the gc
    compiler.
    
    
    - Introduction
    
    The test harness compiles Go code inside files in this directory and
    matches the generated assembly (the output of `go tool compile -S`)
    against a set of regexps to be specified in comments that follow a
    special syntax (described below). The test driver is implemented as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-compiler-configuration.kt

    Paul Merlin <******@****.***> 1698249369 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:57 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

                    printf("C++ compiler used");
                    #else
                    printf("C compiler used");
                    #endif
                    return 0;
                }
            """
            and:
            buildFile << """
    model {
        toolChains {
            ${toolChain.id} {
                target("alwaysFrench"){
                    cCompiler.executable = '${binDir.absolutePath}/french-c-compiler'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //		If the package uses cgo or SWIG, these will be compiled with the
    //		OS-native compiler (typically gcc); otherwise they will
    //		trigger an error.
    //	.cc, .cpp, .cxx, .hh, .hpp, .hxx
    //		C++ source files. Only useful with cgo or SWIG, and always
    //		compiled with the OS-native compiler.
    //	.m
    //		Objective-C source files. Only useful with cgo, and always
    //		compiled with the OS-native compiler.
    //	.s, .S, .sx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        }
        javaLauncher = launcher
        if (jvmVersionForTest().canCompileOrRun(9)) {
            // Required by JdkTools and JdkJavaCompiler
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED"))
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"))
    
            if (isUnitTest() || usesEmbeddedExecuter()) {
                jvmArgs(org.gradle.internal.jvm.JpmsConfiguration.GRADLE_DAEMON_JPMS_ARGS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    		}
    	}
    	appendSetting("-buildmode", buildmode)
    	appendSetting("-compiler", cfg.BuildContext.Compiler)
    	if gccgoflags := BuildGccgoflags.String(); gccgoflags != "" && cfg.BuildContext.Compiler == "gccgo" {
    		appendSetting("-gccgoflags", gccgoflags)
    	}
    	if gcflags := BuildGcflags.String(); gcflags != "" && cfg.BuildContext.Compiler == "gc" {
    		appendSetting("-gcflags", gcflags)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top