Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,259 for cCompiler (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    `cppCompile__Variant__` (e.g. `cppCompileDebug` and `cppCompileRelease`) extends `main__Variant__Implementation`::
    Used for compiling the library.
    This configuration contains the compile include roots of the library and is therefore used when invoking the {cpp} compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Used for linking the library the shared library only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

                .assertContainsCompileAvoidanceWarning("buildSrc.jar: class com/example/Foo: Unknown Kotlin metadata with kind: 42 on class com/example/Foo - this can happen if this class is compiled with a later Kotlin version than the Kotlin compiler used by Gradle")
    
            givenJavaClassInBuildSrcContains(
                """
                public static String foo() {
                    return "bar";
                }
                """,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.h

    #include "absl/types/optional.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/device_util.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/resource_operation_safety_analysis.h"
    #include "tensorflow/compiler/tf2xla/const_analysis.h"
    #include "tensorflow/compiler/tf2xla/resource_operation_table.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tfcompile.bzl

                deps = [
                    ":" + name,
                    "//tensorflow/compiler/aot:benchmark",
                    "@local_xla//xla:executable_run_options",
                    "@eigen_archive//:eigen3",
                ] + if_android([
                    "//tensorflow/compiler/aot:benchmark_extra_android",
                ]),
                tags = tags,
                visibility = visibility,
            )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

     * limitations under the License.
     */
    
    package com.gradle.internal.compiler.java.listeners
    
    import com.gradle.internal.compiler.java.AbstractCompilerPluginTest
    import org.gradle.internal.compiler.java.TestCompiler
    import org.gradle.internal.compiler.java.listeners.constants.ConstantDependentsConsumer
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/IncrementalResultStoringCompiler.java

    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.constants.ConstantToDependentsMapping;
    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.constants.ConstantToDependentsMappingMerger;
    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.GeneratedResource;
    import org.gradle.api.internal.tasks.compile.incremental.deps.ClassSetAnalysisData;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    `swiftCompile__Variant__` (e.g. `swiftCompileDebug` and `swiftCompileRelease`) extends `main__Variant__Implementation`::
    Used for compiling the application.
    This configuration contains the compile include roots of the application and is therefore used when invoking the Swift compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Used for linking the application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

        def 'source compatibility serves as target compatibility fallback on compile spec when compiler tool is defined'() {
            def javaCompile = project.tasks.create('compileJava', JavaCompile)
            javaCompile.destinationDirectory.fileValue(new File('somewhere'))
            def javaHome = Jvm.current().javaHome
            def metadata = Mock(JavaInstallationMetadata)
            def compiler = Mock(JavaCompiler)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gc.go

    	// appropriate linker. In case of C++ code, use the compiler named
    	// by the CXX environment variable or defaultCXX if CXX is not set.
    	// Else, use the CC environment variable and defaultCC as fallback.
    	var compiler []string
    	if cxx {
    		compiler = envList("CXX", cfg.DefaultCXX(cfg.Goos, cfg.Goarch))
    	} else {
    		compiler = envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    `cppCompile__Variant__` (e.g. `cppCompileDebug` and `cppCompileRelease`) extends `main__Variant__Implementation`::
    Used for compiling the application.
    This configuration contains the compile include roots of the application and is therefore used when invoking the {cpp} compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Used for linking the application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top