Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,808 for compilers (0.51 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/SystemPathVersionLocatorTest.groovy

            def vsDir = tmpDir.createDir("vs")
            def compiler = vsDir.file("cl.exe")
    
            when:
            List<VisualStudioInstallCandidate> metadata = locator.getVisualStudioInstalls()
    
            then:
            1 * os.findInPath("cl.exe") >> compiler
            1 * versionDeterminer.getVisualStudioMetadataFromCompiler(compiler) >> vsMetadata(vsDir, "15.0")
    
            and:
            metadata.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/textflag.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file defines flags attached to various functions
    // and data objects. The compilers, assemblers, and linker must
    // all agree on these values.
    
    package obj
    
    const (
    	// Don't profile the marked routine.
    	//
    	// Deprecated: Not implemented, do not use.
    	NOPROF = 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                    }
                    compiler = toolProvider.locateTool(ToolType.OBJECTIVECPP_COMPILER);
                    if (compiler.isAvailable()) {
                        return toolProvider;
                    }
                    // No compilers available, complain about the missing C compiler
                    return new UnavailablePlatformToolProvider(targetMachine.getOperatingSystem(), cCompiler);
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // given test case.
    # define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_
    
    // The 'Types' template argument below must have spaces around it
    // since some compilers may choke on '>>' when passing a template
    // instance (e.g. Types<int>)
    # define TYPED_TEST_CASE(CaseName, Types) \
      typedef ::testing::internal::TypeList< Types >::type \
          GTEST_TYPE_PARAMS_(CaseName)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/go/importer/importer.go

    	}
    
    	// compiler not supported
    	return nil
    }
    
    // For calls [ForCompiler] with a new FileSet.
    //
    // Deprecated: Use [ForCompiler], which populates a FileSet
    // with the positions of objects created by the importer.
    func For(compiler string, lookup Lookup) types.Importer {
    	return ForCompiler(token.NewFileSet(), compiler, lookup)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/make.rc

    # GOHOSTARCH: The architecture for host tools (compilers and
    # binaries).  Binaries of this type must be executable on the current
    # system, so the only common reason to set this is to set
    # GOHOSTARCH=386 on an amd64 machine.
    #
    # GOARCH: The target architecture for installed packages and tools.
    #
    # GOOS: The target operating system for installed packages and tools.
    #
    # GO_GCFLAGS: Additional go tool compile arguments to use when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // given test case.
    # define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_
    
    // The 'Types' template argument below must have spaces around it
    // since some compilers may choke on '>>' when passing a template
    // instance (e.g. Types<int>)
    # define TYPED_TEST_CASE(CaseName, Types) \
      typedef ::testing::internal::TypeList< Types >::type \
          GTEST_TYPE_PARAMS_(CaseName)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. src/cmd/vet/doc.go

    calls whose arguments do not align with the format string. Vet uses heuristics
    that do not guarantee all reports are genuine problems, but it can find errors
    not caught by the compilers.
    
    Vet is normally invoked through the go command.
    This command vets the package in the current directory:
    
    	go vet
    
    whereas this one vets the packages whose path is provided:
    
    	go vet my/project/...
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/make.bat

    directive, in the build. Set it to 0 to ignore them.
    L25:::
    L26::: CC: Command line to run to compile C code for GOHOSTARCH.
    L27::: Default is "gcc".
    L28:::
    L29::: CC_FOR_TARGET: Command line to run compile C code for GOARCH.
    L30::: This is used by cgo. Default is CC.
    L31:::
    L32::: FC: Command line to run to compile Fortran code.
    L33::: This is used by cgo. Default is "gfortran".
    L34:
    L35:@echo off
    L36:
    L37::: Keep environment variables within this script
    L38::: unless invoked with --no-local.
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top