Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 133 for fmin32 (0.3 sec)

  1. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistryTest.groovy

            vsConfig1.project.name == "mainExe"
            vsConfig1.configurationName == "vsConfig1"
            vsConfig1.platformName == "Win32"
    
            and:
            vsConfig2.type == "Makefile"
            vsConfig2.project.name == "mainExe"
            vsConfig2.configurationName == "vsConfig2"
            vsConfig2.platformName == "Win32"
        }
    
        def "visual studio project contains sources for native binaries for all configurations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CCallingMixedCAndCppHelloWorldApp.groovy

                        return 0;
                    }
            """)
        }
    
        @Override
        SourceFile getLibraryHeader() {
            sourceFile("headers", "hello.h", """
                    #ifdef _WIN32
                    #define DLL_FUNC __declspec(dllexport)
                    #else
                    #define DLL_FUNC
                    #endif
    
                    #ifdef __cplusplus
                    extern "C" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		Uint(maxI8 + 1),
    		Uint(maxI8),
    		Uint(maxI8 - 1),
    		Uint(0),
    		Int(minI8 + 1),
    		Int(minI8),
    		Int(minI8 - 1),
    		Int(minI16 + 1),
    		Int(minI16),
    		Int(minI16 - 1),
    		Int(minI32 + 1),
    		Int(minI32),
    		Int(minI32 - 1),
    		Int(minI64 + 1),
    		Int(minI64),
    
    		// other possibly interesting values
    		Uint(1),
    		Int(-1),
    		Uint(0xff << 56),
    		Uint(0xff << 32),
    		Uint(0xff << 24),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/PathUtilTest.groovy

            "C:${File.separator}some-name"                            | "some-name"
            ""                                                        | ""
            "C:${File.separator}Windows/system${File.separator}win32" | "win32"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppGreeterFunction.groovy

            return source
        }
    
        CppGreeterFunction(String publicHeaderDir = "headers") {
            header = ofFile(sourceFile(publicHeaderDir, "greeter.h", """
    #ifndef GREETER_H
    #define GREETER_H
    
    #ifdef _WIN32
    #define EXPORT_FUNC __declspec(dllexport)
    #else
    #define EXPORT_FUNC
    #endif
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    void sayGreeting();
    
    #ifdef __cplusplus
    }
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap_windows.go

    	// https://learn.microsoft.com/en-us/windows/win32/memory/creating-a-file-mapping-object#file-mapping-size
    	h, err := windows.CreateFileMapping(windows.Handle(f.Fd()), nil, syscall.PAGE_READWRITE, 0, 0, nil)
    	if err != nil {
    		return Data{}, fmt.Errorf("CreateFileMapping %s: %w", f.Name(), err)
    	}
    	// the mapping extends from zero to the end of the file mapping
    	// https://learn.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-mapviewoffile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbNamedPipe.java

     * being used.
     * </td>
     * </tr>
     * </table>
     *
     * <p>
     * See <a href="../../../pipes.html">Using jCIFS to Connect to Win32
     * Named Pipes</a> for a detailed description of how to use jCIFS with
     * Win32 Named Pipe server processes.
     *
     */
    
    public class SmbNamedPipe extends SmbFile implements SmbPipeResource {
    
        private final int pipeType;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 137 bytes
    - Viewed (0)
  9. cmd/kubelet/app/init_windows.go

    )
    
    const (
    	serviceName = "kubelet"
    )
    
    // getPriorityValue returns the value associated with a Windows process priorityClass
    // Ref: https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/setpriority-method-in-class-win32-process
    func getPriorityValue(priorityClassName string) uint32 {
    	var priorityClassMap = map[string]uint32{
    		"IDLE_PRIORITY_CLASS":         uint32(windows.IDLE_PRIORITY_CLASS),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 01:54:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryDependenciesIntegrationTest.groovy

            file("lib/src/main/cpp/lib.cpp") << librarySource
            file("src/main/cpp/lib.cpp") << mainLibrarySource
        }
    
        private static getLibrarySource() {
            return """
                #ifdef _WIN32
                #define EXPORT_FUNC __declspec(dllexport)
                #else
                #define EXPORT_FUNC
                #endif
                
                void EXPORT_FUNC lib_func() { }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top