Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for compilers (0.32 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Determine whether the compiler supports Microsoft's Structured Exception
    // Handling.  This is supported by several Windows compilers but generally
    // does not exist on any other system.
    #ifndef GTEST_HAS_SEH
    // The user didn't tell us, so we need to figure it out.
    
    # if defined(_MSC_VER) || defined(__BORLANDC__)
    // These two compilers are known to support SEH.
    #  define GTEST_HAS_SEH 1
    # else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Determine whether the compiler supports Microsoft's Structured Exception
    // Handling.  This is supported by several Windows compilers but generally
    // does not exist on any other system.
    #ifndef GTEST_HAS_SEH
    // The user didn't tell us, so we need to figure it out.
    
    # if defined(_MSC_VER) || defined(__BORLANDC__)
    // These two compilers are known to support SEH.
    #  define GTEST_HAS_SEH 1
    # else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/link/internal/ld/lib.go

    		// by default. With these compilers, however you can turn it
    		// off if you want using "--disable-dynamicbase" or
    		// "--no-dynamicbase".
    		//
    		// The strategy below is to try using "--disable-dynamicbase";
    		// if this succeeds, then assume we're working with more
    		// modern compilers and act accordingly. If it fails, assume
    		// an ancient compiler with ancient defaults.
    		var dbopt string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	tg.run("test", "-c", "-n", "p1")
    	tg.grepBothNot(`([\\/]compile|gccgo).* (-p main|-fgo-pkgpath=main).*p1\.go`, "should not have run compile -p main p1.go")
    	tg.grepStderr(`([\\/]compile|gccgo).* (-p p1|-fgo-pkgpath=p1).*p1\.go`, "should have run compile -p p1 p1.go")
    }
    
    // Issue 4104.
    func TestGoTestWithPackageListedMultipleTimes(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    		runtime.Stack(buf, true)
    	}
    }
    
    // TestTryAdd tests the cases that are hard to test with real program execution.
    //
    // For example, the current go compilers may not always inline functions
    // involved in recursion but that may not be true in the future compilers. This
    // tests such cases by using fake call sequences and forcing the profile build
    // utilizing translateCPUProfile defined in proto_test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	return fmt.Sprintf("/*line :%d:%d*/%s", p.Line, p.Column, s)
    }
    
    // checkGCCBaseCmd returns the start of the compiler command line.
    // It uses $CC if set, or else $GCC, or else the compiler recorded
    // during the initial build as defaultCC.
    // defaultCC is defined in zdefaultcc.go, written by cmd/dist.
    //
    // The compiler command line is split into arguments on whitespace. Quotes
    // are understood, so arguments may contain whitespace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	} else {
    		archive = b
    	}
    
    	// Compile Go code.
    	compile := []string{pathf("%s/compile", tooldir), "-std", "-pack", "-o", b, "-p", pkgName, "-importcfg", importcfg}
    	if gogcflags != "" {
    		compile = append(compile, strings.Fields(gogcflags)...)
    	}
    	if len(sfiles) > 0 {
    		compile = append(compile, "-asmhdr", goasmh)
    	}
    	if symabis != "" {
    		compile = append(compile, "-symabis", symabis)
    	}
    	if goos == "android" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:configuring_the_compiler_assembler_and_linker]]
    == Configuring the compiler, assembler and linker
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/runtime/map.go

    // If you modify hiter, also change cmd/compile/internal/reflectdata/reflect.go
    // and reflect/value.go to match the layout of this structure.
    type hiter struct {
    	key         unsafe.Pointer // Must be in first position.  Write nil to indicate iteration end (see cmd/compile/internal/walk/range.go).
    	elem        unsafe.Pointer // Must be in second position (see cmd/compile/internal/walk/range.go).
    	t           *maptype
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top