Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 5,424 for ccompile (0.46 sec)

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

    `compile__Variant__Cpp` (e.g. `compileDebugCpp` and `compileReleaseCpp`)  - link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html[CppCompile]::
    Depends on: All tasks that contribute source files to the compilation
    ::
    Compiles {cpp} source files using the selected compiler.
    
    `link__Variant__` (e.g. `linkDebug` and `linkRelease`) - link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html[LinkExecutable]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkJavaCompiler.java

            List<String> options = new JavaCompilerArgumentsBuilder(spec).build();
            ContextAwareJavaCompiler compiler = compilerFactory.create();
            Objects.requireNonNull(compiler, "Compiler factory returned null compiler");
    
            MinimalJavaCompileOptions compileOptions = spec.getCompileOptions();
            Charset charset = Optional.ofNullable(compileOptions.getEncoding())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 14:50:33 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorJdkVersionsIntegrationTest.groovy

            where:
            // We can't test against Java 6 since the gradleApi dependencies are compiled to java 8.
            // However, the java 7 compiler is permissive enough to compile against the java 8 API classes.
            version << [JavaVersion.VERSION_1_7]
        }
    
        def "succeeds when running with compatible java version"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.compile
    
    import org.gradle.api.InvalidUserDataException
    import org.gradle.api.JavaVersion
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.internal.provider.AbstractProperty
    import org.gradle.api.internal.tasks.compile.CommandLineJavaCompileSpec
    import org.gradle.api.internal.tasks.compile.ForkingJavaCompileSpec
    import org.gradle.internal.jvm.Jvm
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/DaemonScalaCompiler.java

     */
    
    import org.gradle.api.internal.ClassPathRegistry;
    import org.gradle.api.internal.tasks.compile.BaseForkOptionsConverter;
    import org.gradle.api.internal.tasks.compile.MinimalJavaCompilerDaemonForkOptions;
    import org.gradle.api.internal.tasks.compile.daemon.AbstractDaemonCompiler;
    import org.gradle.api.internal.tasks.compile.daemon.CompilerWorkerExecutor;
    import org.gradle.initialization.ClassLoaderRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            !platformToolChain.available
            getMessage(platformToolChain) == "c compiler not found"
        }
    
        def "is unavailable when no C++ compiler can be found and building C++"() {
            def compilerMissing = Stub(CommandLineToolSearchResult) {
                isAvailable() >> false
                explain(_) >> { DiagnosticsVisitor visitor -> visitor.node("c++ compiler not found") }
            }
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/build_xla_ops_pass.cc

    #include "tensorflow/cc/ops/logging_ops.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/device_util.h"
    #include "tensorflow/compiler/jit/encapsulate_subgraphs_pass.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/xla_cluster_util.h"
    #include "tensorflow/compiler/tf2xla/cc/ops/xla_jit_ops.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/status_macros.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CommandLineJavaCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile;
    
    import org.gradle.api.tasks.WorkResult;
    import org.gradle.api.tasks.WorkResults;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.ExecHandle;
    import org.gradle.process.internal.ExecHandleBuilder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompiler.java

    import xsbti.T2;
    import xsbti.VirtualFile;
    import xsbti.compile.AnalysisContents;
    import xsbti.compile.AnalysisStore;
    import xsbti.compile.ClassFileManagerType;
    import xsbti.compile.ClasspathOptionsUtil;
    import xsbti.compile.CompileAnalysis;
    import xsbti.compile.CompileOptions;
    import xsbti.compile.CompileResult;
    import xsbti.compile.CompilerCache;
    import xsbti.compile.Compilers;
    import xsbti.compile.DefinesClass;
    import xsbti.compile.IncOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

            notExecuted ':core:mergeFreeDebugResources'
    
            and: "compile classpath for core includes external dependency"
            outputContains 'Compile classpath for :core:compileJavaFreeDebug : [commons-lang3-3.5.jar]'
    
            and: "compile classpath for client excludes external dependency"
            outputContains 'Compile classpath for :client:compileJavaFreeDebug : [core-freedebug.jar]'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top