Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,424 for ccompile (0.12 sec)

  1. src/cmd/go/testdata/script/build_cache_output.txt

    go test -v -x -gcflags=-m -ldflags=-v p
    stderr 'compile( |\.exe"?)'
    stderr 'p_test.go:.*can inline Test' # from compile of p_test
    stderr 'testmain\.go:.*inlin' # from compile of testmain
    stderr 'link(\.exe"?)? -'
    stderr '\d+ symbols' # from linker
    stderr 'p\.test( |\.exe"?)'
    stdout 'TEST' # from test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/native/language-native/src/main/java/org/gradle/language/assembler/tasks/Assemble.java

            NativePlatformInternal nativePlatform = (NativePlatformInternal) targetPlatform.get();
            Compiler<AssembleSpec> compiler = nativeToolChain.select(nativePlatform).newCompiler(AssembleSpec.class);
            WorkResult result = BuildOperationLoggingCompilerDecorator.wrap(compiler).execute(spec);
            setDidWork(result.getDidWork() || cleanedOutputs);
        }
    
        @InputFiles
        @SkipWhenEmpty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

            }
        }
    }
    // end::executables[]
    
    // tag::compiler-args[]
    model {
        binaries {
            all {
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cCompiler.args "-O2"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cCompiler.args "/Zi"
                    linker.args "/DEBUG"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_java_projects.adoc

    For the example above this would mean the ABI extracted from the compile classpath would be unchanged, but the annotation processor classpath (because it's not treated with compile avoidance) would be different. Ultimately, the developer would end up having to recompile the application.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.td

      let results = (outs TFTensorType);
      let assemblyFormat = "operands attr-dict";
    }
    
    def CompileAndExecuteOp: Gpu_Op<"compile_and_execute"> {
      let summary = "GPU compile and execute operation.";
      let description = [{
        The op compiles and executes a GPU cluster function.
    
        func_name is the name of the function to be executed on GPU.
        resource_indices are the indices of inputs that are resources.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingJavaCompilerTest.groovy

     */
    package org.gradle.api.internal.tasks.compile
    
    import com.google.common.collect.ImmutableSet
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.tasks.WorkResult
    import org.gradle.api.tasks.compile.CompileOptions
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class NormalizingJavaCompilerTest extends Specification {
        org.gradle.language.base.internal.compile.Compiler<JavaCompileSpec> target = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompiler.java

    import org.gradle.api.tasks.WorkResult;
    import org.gradle.language.base.internal.compile.Compiler;
    
    import java.util.Collection;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Sets up annotation processing before delegating to the actual Java compiler.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/IncrementalCompilerFactory.java

     */
    
    package org.gradle.api.internal.tasks.compile.incremental;
    
    import org.gradle.api.file.FileTree;
    import org.gradle.api.internal.cache.StringInterner;
    import org.gradle.api.internal.tasks.compile.CleaningJavaCompiler;
    import org.gradle.api.internal.tasks.compile.JavaCompileSpec;
    import org.gradle.api.internal.tasks.compile.incremental.classpath.ClassSetAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.CurrentCompilationAccess;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

                }
    
                target("alwaysCPlusPlus") {
                    def compilerMap = [gcc: 'g++', clang: 'clang++']
                    cCompiler.executable = compilerMap[cCompiler.executable]
                    cCompiler.withArguments { args ->
                        Collections.replaceAll(args, "c", "c++")
                    }
                }
            }
        }
    
        platforms {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top