Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 5,424 for ccompile (0.18 sec)

  1. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

     * limitations under the License.
     */
    package org.gradle.internal.compiler.java;
    
    import com.sun.source.util.JavacTask;
    import org.gradle.internal.compiler.java.listeners.classnames.ClassNameCollector;
    import org.gradle.internal.compiler.java.listeners.constants.ConstantDependentsConsumer;
    import org.gradle.internal.compiler.java.listeners.constants.ConstantsCollector;
    
    import javax.annotation.processing.Processor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/OutputCleaningCompiler.java

    import org.gradle.api.tasks.WorkResults;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.nativeplatform.internal.CompilerOutputFileNamingSchemeFactory;
    
    import java.io.File;
    
    public class OutputCleaningCompiler<T extends NativeCompileSpec> implements Compiler<T> {
    
        private final Compiler<T> compiler;
        private final String outputFileSuffix;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    //
    //   XLAs `mhlo.transpose` operation requires permutation to be an attribute
    //   (compile time value), so it means that if we want to put `tf.Transpose`
    //   into a cluster that will be compiled with XLA, the `%perm` operand must
    //   be a known compiled time value, e.g. result of a `tf.Const` operation.
    //
    class ClusteringPolicy {
     public:
      virtual ~ClusteringPolicy() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/cpp/plugins/CppBasePlugin.java

            project.getComponents().withType(DefaultCppBinary.class, binary -> {
                final Names names = binary.getNames();
                String language = "cpp";
    
                TaskProvider<CppCompile> compile = tasks.register(names.getCompileTaskName(language), CppCompile.class, task -> {
                    final Callable<List<File>> systemIncludes = () -> binary.getPlatformToolProvider().getSystemLibraries(ToolType.CPP_COMPILER).getIncludeDirs();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/gcflags_patterns.txt

    go build -a -n -v -gcflags=-e z1 z2
    stderr 'compile.* -p z1.* -e '
    stderr 'compile.* -p z2.* -e '
    stderr 'compile.* -p y'
    ! stderr 'compile.* -p [^z].* -e '
    
    # -gcflags can specify package=flags, and can be repeated; last match wins
    go build -a -n -v -gcflags=-e -gcflags=z1=-N z1 z2
    stderr 'compile.* -p z1.* -N '
    ! stderr 'compile.* -p z1.* -e '
    ! stderr 'compile.* -p z2.* -N '
    stderr 'compile.* -p z2.* -e '
    stderr 'compile.* -p y'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

            spec.setOperationLogger(operationLogger);
    
            Compiler<LinkerSpec> compiler = createCompiler();
            compiler = BuildOperationLoggingCompilerDecorator.wrap(compiler);
            WorkResult result = compiler.execute(spec);
            setDidWork(result.getDidWork() || cleanedOutputs);
        }
    
        @SuppressWarnings("unchecked")
        private Compiler<LinkerSpec> createCompiler() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/cmd/internal/bootstrap_test/experiment_toolid_test.go

    	runCmd(t, gorootSrc, env, makeScriptPath)
    
    	// Verify compiler version string.
    	goCmdPath := filepath.Join(goroot, "bin", "go")
    	gotVersion := bytes.TrimSpace(runCmd(t, gorootSrc, env, goCmdPath, "tool", "compile", "-V=full"))
    	wantVersion := []byte(`compile version go1.999`)
    	if !bytes.Equal(gotVersion, wantVersion) {
    		t.Errorf("compile version without experiment is unexpected:\ngot  %q\nwant %q", gotVersion, wantVersion)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 18:47:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/aot_only_var_handle_op.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/aot/aot_only_var_handle_op.h"
    
    #include "tensorflow/compiler/tf2xla/xla_context.h"
    #include "tensorflow/compiler/tf2xla/xla_op_kernel.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "tensorflow/core/framework/shape_inference.h"
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:57:04 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    //     int foo;
    //     GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
    //                                      // not a compile-time constant.
    //
    // - By using the type CompileAssert<(bool(expr))>, we ensures that
    //   expr is a compile-time constant.  (Template arguments must be
    //   determined at compile-time.)
    //
    // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compilation_profiler.h

    #include <cstdint>
    #include <string>
    
    #include "tensorflow/compiler/jit/xla_compile_util.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    
    namespace tensorflow {
    
    // Tracks statistics for device compilation and uses these to determine whether
    // the given cluster should be compiled or not.
    class DeviceCompilationProfiler : public ResourceBase {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top