Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 741 for compilers (0.41 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

                FileCollection scalaClasspath = runtime.inferScalaClasspath(files);
                File compilerJar = runtime.findScalaJar(scalaClasspath, "compiler");
                if (compilerJar == null) {
                    compilerJar = runtime.findScalaJar(scalaClasspath, "compiler_3");
                }
                String scalaVersion = compilerJar != null ? runtime.getScalaVersion(compilerJar) : DEFAULT_SCALA_PLATFORM_VERSION;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/BUILD

            "//tensorflow/compiler/mlir/tensorflow/transforms:set_tpu_infeed_layout",
            "//tensorflow/compiler/mlir/tf2xla:compile_mlir_util",
            "//tensorflow/compiler/tf2xla:layout_util",
            "//tensorflow/compiler/tf2xla:xla_compiler",
            "//tensorflow/compiler/tf2xla:xla_helpers",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

            ":stablehlo_type_utils",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
            "//tensorflow/compiler/mlir/lite/quantization/ir:QuantOps",
            "//tensorflow/compiler/mlir/quantization/common:attrs_and_constraints",
            "//tensorflow/compiler/mlir/quantization/common:func",
            "//tensorflow/compiler/mlir/quantization/common:lift_as_function_call",
            "//tensorflow/compiler/mlir/quantization/common:uniform_quantized_types",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/BUILD

            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
            "//tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions:reduce",
            "//tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions:util",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:dynamic_shape_utils",
            "//tensorflow/compiler/mlir/tensorflow/transforms:lower_tf_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. src/runtime/stubs.go

    	// the compiler will optimize the division.
    	return (n + a - 1) / a
    }
    
    // checkASM reports whether assembly runtime checks have passed.
    func checkASM() bool
    
    func memequal_varlen(a, b unsafe.Pointer) bool
    
    // bool2int returns 0 if x is false or 1 if x is true.
    func bool2int(x bool) int {
    	// Avoid branches. In the SSA compiler, this compiles to
    	// exactly what you would want it to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/cc_test.go

    func compilerRequiredAsanVersion(goos, goarch string) bool {
    	compiler, err := compilerVersion()
    	if err != nil {
    		return false
    	}
    	switch compiler.name {
    	case "gcc":
    		if goarch == "loong64" {
    			return compiler.major >= 14
    		}
    		if goarch == "ppc64le" {
    			return compiler.major >= 9
    		}
    		return compiler.major >= 7
    	case "clang":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	newPolicyAccessor func(P) PolicyAccessor,
    	newBindingAccessor func(B) BindingAccessor,
    	compiler func(P) E,
    	paramInformerFactory informers.SharedInformerFactory,
    	dynamicClient dynamic.Interface,
    	restMapper meta.RESTMapper,
    ) Source[PolicyHook[P, B, E]] {
    	res := &policySource[P, B, E]{
    		compiler:             compiler,
    		policyInformer:       generic.NewInformer[P](policyInformer),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/BUILD

            ":passes",
            ":tfr",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:convert_attr",
            "//tensorflow/compiler/mlir/tensorflow:convert_type",
            "//tensorflow/compiler/mlir/tensorflow:export_graphdef",
            "//tensorflow/compiler/mlir/tensorflow:mlir_roundtrip_flags",
            "//tensorflow/compiler/mlir/tensorflow/transforms:tensorflow_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/BUILD

            ":llvm_targets",  # fixdeps: keep
            "//tensorflow/compiler/tf2xla",
            "//tensorflow/compiler/tf2xla:mlir_tf2xla",
            "//tensorflow/compiler/tf2xla:tf2xla_proto_cc",
            "//tensorflow/compiler/tf2xla:tf2xla_util",
            "//tensorflow/compiler/tf2xla:xla_compiler",
            "//tensorflow/compiler/tf2xla/kernels:xla_dummy_ops",
            "//tensorflow/compiler/tf2xla/kernels:xla_ops",
            "//tensorflow/core:core_cpu_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. 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)
Back to top