Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Win32 (0.06 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            installation('build/install/main/win32/debug').assertInstalled()
        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        @ToBeFixedForConfigurationCache
        def "can build library from visual studio"() {
            useMsbuildTool()
            def debugBinaryLib = staticLibrary("build/libs/main/static/win32/debug/main")
            def debugBinaryDll = sharedLibrary("build/libs/main/shared/win32/debug/main")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    ignoring nonexistent directory "/usr/lib/gcc/x86_64-w64-mingw32/10-win32/../../../../x86_64-w64-mingw32/sys-include"
    #include "..." search starts here:
    #include <...> search starts here:
     /usr/lib/gcc/x86_64-w64-mingw32/10-win32/include
     /usr/lib/gcc/x86_64-w64-mingw32/10-win32/include-fixed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. cluster/gce/windows/testonly/install-ssh.psm1

        net start ${service}
        Set-Service ${service} -StartupType Automatic
      }
    }
    
    # Installs open-ssh using the instructions in
    # https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH.
    #
    # After installation run StartProcess-WriteSshKeys to fetch ssh keys from the
    # metadata server.
    function InstallAndStart-OpenSsh {
      if (-not (ShouldWrite-File $OPENSSH_ROOT)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  4. src/os/types_windows.go

    // reparse point is a surrogate for another named entity (for example, a mounted folder).
    //
    // See https://learn.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-isreparsetagnamesurrogate
    // and https://learn.microsoft.com/en-us/windows/win32/fileio/reparse-point-tags.
    func (fs *fileStat) isReparseTagNameSurrogate() bool {
    	// True for IO_REPARSE_TAG_SYMLINK and IO_REPARSE_TAG_MOUNT_POINT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

            then:
            resultSolution.size() == 1
            resultSolution[0].assertOutputContains('The project "' + visualStudioProjectName + '" is not selected for building in solution configuration "unbuildable|Win32".')
    
            when:
            def resultProject = msbuild
                    .withWorkingDir(testDirectory)
                    .withSolution(solutionFile)
                    .withProject(visualStudioProjectName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            resultUnbuildableSolution[0].assertOutputContains('The project "exe" is not selected for building in solution configuration "unbuildable|Win32".')
            resultUnbuildableSolution[0].assertOutputContains('The project "libLib" is not selected for building in solution configuration "unbuildable|Win32".')
            installation('exe/build/install/main/debug').assertNotInstalled()
    
            when:
            def resultDebug = msbuild
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

            String line;
            try {
                while ((line = reader.readLine()) != null) {
                    // allowing win32 to bypass the check is due to the mingw compiler on linux not including major.minor in the version string.
                    if ((line.contains(majorMinorOnly) || line.contains("win32"))
                        && line.contains(" version ")
                        && line.contains(compilerType.getIdentifier())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/syscall/types_windows.go

    	// fields: dwFileType, dwCreatorType, and wFinderFlags. However, those fields
    	// are empirically only present in the macOS port of the Win32 API,² and thus
    	// not needed for binaries built for Windows.
    	//
    	// ¹ https://docs.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-win32_find_dataw
    	// ² https://golang.org/issue/42637#issuecomment-760715755
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

            private String resolveNativePrefix() {
                String arch = System.getProperty("os.arch");
                if ("i386".equals(arch)) {
                    arch = "x86";
                }
                return "win32-" + arch;
            }
    
            @Override
            public String getPathVar() {
                return "Path";
            }
        }
    
        static class Unix extends OperatingSystem {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #endif
    
    #ifndef CU_MAX
    #  define CU_MAX(a,b) (((a) >= (b)) ? (a) : (b))
    #endif
    
    #ifndef CU_MIN
    #  define CU_MIN(a,b) (((a) >= (b)) ? (b) : (a))
    #endif
    
    #if defined(WIN32) || defined(_WIN32) || defined(__WIN32) || defined(__WIN32__)
    #  ifdef CU_DLL
    #    ifdef CU_BUILD_DLL
    #      define CU_EXPORT __declspec(dllexport)
    #    else
    #      define CU_EXPORT __declspec(dllimport)
    #    endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top