Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,856 for COMPILER (0.39 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/apiJdt.properties

    eclipse.preferences.version=1
    org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
    org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
    org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
    org.eclipse.jdt.core.compiler.compliance=1.5
    org.eclipse.jdt.core.compiler.debug.lineNumber=generate
    org.eclipse.jdt.core.compiler.debug.localVariable=generate
    org.eclipse.jdt.core.compiler.debug.sourceFile=generate
    org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 587 bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/commonJdt.properties

    eclipse.preferences.version=1
    org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
    org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
    org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
    org.eclipse.jdt.core.compiler.compliance=1.6
    org.eclipse.jdt.core.compiler.debug.lineNumber=generate
    org.eclipse.jdt.core.compiler.debug.localVariable=generate
    org.eclipse.jdt.core.compiler.debug.sourceFile=generate
    org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 587 bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/compile/VersionAwareCompiler.java

        private final CompilerVersion compilerVersion;
        private final Compiler<T> compiler;
    
        public VersionAwareCompiler(Compiler<T> compiler, CompilerVersion version) {
            this.compiler = compiler;
            this.compilerVersion = version;
        }
    
        @Override
        public WorkResult execute(T spec) {
            return compiler.execute(spec);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

        data = [
            ":importer_test_min_max",
            ":test_schema.fbs",
            "//tensorflow/compiler/mlir:tf-opt",
            "//tensorflow/compiler/mlir/lite:flatbuffer_to_string",
            "//tensorflow/compiler/mlir/lite:flatbuffer_translate",
            "//tensorflow/compiler/mlir/lite:json_to_flatbuffer",
            "//tensorflow/compiler/mlir/lite:tf_tfl_translate",
            "@llvm-project//llvm:FileCheck",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/c/BUILD

            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:convert_type",
            "//tensorflow/compiler/mlir/tensorflow:dump_mlir_util",
            "//tensorflow/compiler/mlir/tensorflow:error_util",
            "//tensorflow/compiler/mlir/tensorflow:export_graphdef",
            "//tensorflow/compiler/mlir/tensorflow:tensorflow_types",
            "//tensorflow/compiler/mlir/tensorflow/transforms:tensorflow_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/BUILD

            ":statistics",
            "//tensorflow/compiler/mlir/quantization/stablehlo:passes",
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:component",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:debugger",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:io",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompilerFactory.java

            }
            return javaHomeBasedJavaCompilerFactory;
        }
    
        @Override
        @SuppressWarnings("unchecked")
        public <T extends CompileSpec> Compiler<T> create(Class<T> type) {
            Compiler<T> result = createTargetCompiler(type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/BUILD

        ],
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:config",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:static_range_ptq",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:weight_only_ptq",
            "//tensorflow/compiler/mlir/quantization/tensorflow/python:py_function_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 20:18:36 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/AbstractPlatformToolProvider.java

        }
    
        protected Compiler<?> createCppCompiler() {
            throw unavailableTool("C++ compiler is not available");
        }
    
        protected Compiler<?> createCppPCHCompiler() {
            throw unavailableTool("C++ pre-compiled header compiler is not available");
        }
    
        protected Compiler<?> createCCompiler() {
            throw unavailableTool("C compiler is not available");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_attributes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_structs.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_verifiers.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top