Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,808 for compilers (0.39 sec)

  1. src/cmd/link/internal/loadpe/ldpe.go

    		processSEH(l, arch, ls.PData, ls.XData)
    	}
    
    	return &ls, nil
    }
    
    // PostProcessImports works to resolve inconsistencies with DLL import
    // symbols; it is needed when building with more "modern" C compilers
    // with internal linkage.
    //
    // Background: DLL import symbols are data (SNOPTRDATA) symbols whose
    // name is of the form "__imp_XXX", which contain a pointer/reference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Other language plugins follow the same pattern.
    The last portion of the directory path usually indicates the expected language of the source files.
    
    Some compilers are capable of cross-compiling multiple languages in the same source directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. doc/go_mem.html

    </p>
    
    <p>
    Note that all these optimizations are permitted in C/C++ compilers:
    a Go compiler sharing a back end with a C/C++ compiler must take care
    to disable optimizations that are invalid for Go.
    </p>
    
    <p>
    Note that the prohibition on introducing data races
    does not apply if the compiler can prove that the races
    do not affect correct execution on the target platform.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  4. doc/asm.html

    Some of the details map precisely to the machine, but some do not.
    This is because the compiler suite (see
    <a href="https://9p.io/sys/doc/compiler.html">this description</a>)
    needs no assembler pass in the usual pipeline.
    Instead, the compiler operates on a kind of semi-abstract instruction set,
    and instruction selection occurs partly after code generation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  5. pkg/kube/krt/README.md

    This is similar to a comparison between a high level programming language compared to assembly;
    while its always possible to write better code in assembly, smart compilers can make optimizations humans are unlikely to,
    such as loop unrolling.
    Similarly, `krt` can make complex optimizations in one place, so each controller implementation doesn't, which is likely to increase
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/gccgo.go

    		defs = append(defs, `-D`, `GOPKGPATH="`+pkgpath+`"`)
    	}
    	compiler := envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
    	if b.gccSupportsFlag(compiler, "-fsplit-stack") {
    		defs = append(defs, "-fsplit-stack")
    	}
    	defs = tools.maybePIC(defs)
    	if b.gccSupportsFlag(compiler, "-ffile-prefix-map=a=b") {
    		defs = append(defs, "-ffile-prefix-map="+base.Cwd()+"=.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/quantization/common/func.h"
    #include "tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/utils/stablehlo_type_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/xla_call_module_attrs.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/doc.go

    exists in PPC64 assembler and is frequently used by PPC64 assembler writers.
    
    PCALIGN $16
    PCALIGN $8
    
    By default, functions in Go are aligned to 16 bytes, as is the case in all
    other compilers for PPC64. If there is a PCALIGN directive requesting alignment
    greater than 16, then the alignment of the containing function must be
    promoted to that same alignment or greater.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/debug/gosym/symtab.go

    // or the empty string if there is none.
    func (s *Sym) PackageName() string {
    	name := s.nameWithoutInst()
    
    	// Since go1.20, a prefix of "type:" and "go:" is a compiler-generated symbol,
    	// they do not belong to any package.
    	//
    	// See cmd/compile/internal/base/link.go:ReservedImports variable.
    	if s.goVersion >= ver120 && (strings.HasPrefix(name, "go:") || strings.HasPrefix(name, "type:")) {
    		return ""
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. 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)
Back to top