Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,808 for compilers (0.16 sec)

  1. src/cmd/go/internal/work/buildid.go

    		// a leading space is the compiler proper.
    		compiler := ""
    		for _, line := range lines {
    			if strings.HasPrefix(line, " ") && !strings.HasPrefix(line, " (in-process)") {
    				compiler = line
    				break
    			}
    		}
    		if compiler == "" {
    			return "", "", fmt.Errorf("%s: can not find compilation command in %q", name, out)
    		}
    
    		fields, _ := quoted.Split(compiler)
    		if len(fields) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      //
      // The reason for this overload is that streaming a NULL pointer to
      // ostream is undefined behavior.  Depending on the compiler, you
      // may get "0", "(nil)", "(null)", or an access violation.  To
      // ensure consistent result across compilers, we always treat NULL
      // as "(null)".
      template <typename T>
      inline Message& operator <<(T* const& pointer) {  // NOLINT
        if (pointer == NULL) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/ar.go

    // symbols (e.g. "__imp_XXX"). In older versions of the linker, we
    // would just immediately forward references from the import sym
    // (__imp_XXX) to the DLL sym (XXX), but with newer compilers this
    // strategy falls down in certain cases. We instead now do this
    // forwarding later on as a post-processing step, and meaning that
    // during the middle part of host object loading we can see a lot of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      //
      // The reason for this overload is that streaming a NULL pointer to
      // ostream is undefined behavior.  Depending on the compiler, you
      // may get "0", "(nil)", "(null)", or an access violation.  To
      // ensure consistent result across compilers, we always treat NULL
      // as "(null)".
      template <typename T>
      inline Message& operator <<(T* const& pointer) {  // NOLINT
        if (pointer == NULL) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/make.bash

    # by the internal linker.
    #
    # CC: Command line to run to compile C code for GOHOSTARCH.
    # Default is "gcc". Also supported: "clang".
    #
    # CC_FOR_TARGET: Command line to run to compile C code for GOARCH.
    # This is used by cgo. Default is CC.
    #
    # CC_FOR_${GOOS}_${GOARCH}: Command line to run to compile C code for specified ${GOOS} and ${GOARCH}.
    # (for example, CC_FOR_linux_arm)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/go/types/mono.go

    // with compilers using static instantiation (such as
    // monomorphization).
    //
    // It implements a sort of "type flow" analysis by detecting which
    // type parameters are instantiated with other type parameters (or
    // types derived thereof). A package cannot be statically instantiated
    // if the graph has any cycles involving at least one derived type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/mono.go

    // license that can be found in the LICENSE file.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	. "internal/types/errors"
    )
    
    // This file implements a check to validate that a Go package doesn't
    // have unbounded recursive instantiation, which is not compatible
    // with compilers using static instantiation (such as
    // monomorphization).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. ci/official/README.md

    #   your builds. This usually saves a lot of time, especially when
    #   re-running tests. However, note that:
    #
    #    - New environments like new CUDA versions, changes to manylinux,
    #      compilers, etc. can cause undefined behavior such as build failures
    #      or tests passing incorrectly.
    #    - Automatic LLVM updates are known to extend build time even with
    #      the cache; this is unavoidable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/cshared_test.go

    		if err != nil {
    			return fmt.Errorf("unable to find dlltool path: %v\n%s\n", err, out)
    		}
    		dlltoolpath := strings.TrimSpace(string(out))
    		if filepath.Ext(dlltoolpath) == "" {
    			// Some compilers report slash-separated paths without extensions
    			// instead of ordinary Windows paths.
    			// Try to find the canonical name for the path.
    			if lp, err := exec.LookPath(dlltoolpath); err == nil {
    				dlltoolpath = lp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. src/runtime/mksizeclasses.go

    	// 	else
    	// 		Let F ← N + L where L is the smallest integer
    	// 		such that d ≤ (2^(N+L) mod d) + 2^L.
    	// 	end if
    	//
    	// [1] "Faster Remainder by Direct Computation: Applications to
    	// Compilers and Software Libraries" Daniel Lemire, Owen Kaser,
    	// Nathan Kurz arXiv:1902.01961
    	//
    	// To minimize the risk of introducing errors, we implement the
    	// algorithm exactly as stated, rather than trying to adapt it to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top