Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 156 for Compiler (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Gradle will no longer automatically apply annotation processors that are on the compile classpath — use link:{groovyDslPath}/org.gradle.api.tasks.compile.CompileOptions.html#org.gradle.api.tasks.compile.CompileOptions:annotationProcessorPath[CompileOp...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    /*
      If x and y are not equal, the type will be invalid
      (have a negative array count) and an inscrutable error will come
      out of the compiler and hopefully mention "name".
    */
    #define __cgo_compile_assert_eq(x, y, name) typedef char name[(x-y)*(x-y)*-2UL+1UL];
    
    /* Check at compile time that the sizes we use match our expectations. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h"
    #include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h"
    #include "tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.h"
    
    #define DEBUG_TYPE "stablehlo-compose-uniform-quantized-type"
    
    namespace mlir {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    // when the runtime package is built. The canonical example is
    // "runtime.racefuncenter" -- currently if you do something like
    //
    //	go build -gcflags=-race myprogram.go
    //
    // the compiler will insert calls to the builtin runtime.racefuncenter,
    // but the version of the runtime used for linkage won't actually contain
    // definitions of that symbol. See issue #42396 for details.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h"
    
    #define GEN_PASS_DEF_EMBEDDINGPIPELININGPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            }
        }
    
        private static String replacePoints(String name) {
            return name.replace('.', '$');
        }
    
        /**
         * we use ConstructedClassWithPackage to limit the resolving the compiler does when combining package names and class names. The idea that if we use a package, then we do not want to replace the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   };
    //
    // the code:
    //
    //   void Test1() { Foo<bool> foo; }
    //
    // will NOT generate a compiler error, as Foo<bool>::Bar() is never
    // actually instantiated.  Instead, you need:
    //
    //   void Test2() { Foo<bool> foo; foo.Bar(); }
    //
    // to cause a compiler error.
    template <typename T1, typename T2>
    bool StaticAssertTypeEq() {
      (void)internal::StaticAssertTypeEqHelper<T1, T2>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   };
    //
    // the code:
    //
    //   void Test1() { Foo<bool> foo; }
    //
    // will NOT generate a compiler error, as Foo<bool>::Bar() is never
    // actually instantiated.  Instead, you need:
    //
    //   void Test2() { Foo<bool> foo; foo.Bar(); }
    //
    // to cause a compiler error.
    template <typename T1, typename T2>
    bool StaticAssertTypeEq() {
      (void)internal::StaticAssertTypeEqHelper<T1, T2>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    For example, the use of deprecated APIs in Kotlin DSL will emit warnings each time the script is compiled.
    
    This is a potentially breaking change if you are consuming the console output of Gradle builds.
    
    ==== Configuring Kotlin compiler options with the `kotlin-dsl` plugin applied
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    // internal/platform.BuildModeSupported, which can't be used here
    // because cmd/dist can not import internal packages during bootstrap.
    func buildModeSupported(compiler, buildmode, goos, goarch string) bool {
    	if compiler == "gccgo" {
    		return true
    	}
    
    	platform := goos + "/" + goarch
    
    	switch buildmode {
    	case "archive":
    		return true
    
    	case "c-archive":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top