Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Win32 (0.22 sec)

  1. 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)
  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. 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)
  4. src/net/sock_windows.go

    	"os"
    	"syscall"
    )
    
    func maxListenerBacklog() int {
    	// When the socket backlog is SOMAXCONN, Windows will set the backlog to
    	// "a reasonable maximum value".
    	// See: https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-listen
    	return syscall.SOMAXCONN
    }
    
    func sysSocket(family, sotype, proto int) (syscall.Handle, error) {
    	s, err := wsaSocketFunc(int32(family), int32(sotype), int32(proto),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:52:56 UTC 2024
    - 802 bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // memory using malloc().
      static const char* CloneCString(const char* c_str);
    
    #if GTEST_OS_WINDOWS_MOBILE
      // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be
      // able to pass strings to Win32 APIs on CE we need to convert them
      // to 'Unicode', UTF-16.
    
      // Creates a UTF-16 wide string from the given ANSI string, allocating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/start_windows.go

    	// the console window the parent process was run in
    	// does not kill the child.
    	// See documentation of creation flags in the Microsoft documentation:
    	// https://learn.microsoft.com/en-us/windows/win32/procthread/process-creation-flags
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		CreationFlags: windows.DETACHED_PROCESS,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 732 bytes
    - Viewed (0)
  7. src/internal/poll/sendfile_windows.go

    			return
    		}
    	}
    
    	// TransmitFile can be invoked in one call with at most
    	// 2,147,483,646 bytes: the maximum value for a 32-bit integer minus 1.
    	// See https://docs.microsoft.com/en-us/windows/win32/api/mswsock/nf-mswsock-transmitfile
    	const maxChunkSizePerCall = int64(0x7fffffff - 1)
    
    	for n > 0 {
    		chunkSize := maxChunkSizePerCall
    		if chunkSize > n {
    			chunkSize = n
    		}
    
    		o.qty = uint32(chunkSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    	//
    	// Ensure no new console is attached to the subprocess by setting CREATE_NO_WINDOW.
    	//   https://learn.microsoft.com/en-us/windows/console/creation-of-a-console
    	//   https://learn.microsoft.com/en-us/windows/win32/procthread/process-creation-flags
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		CreationFlags: windows.CREATE_NO_WINDOW,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. pkg/kubelet/util/util_windows.go

    		return "", fmt.Errorf("cannot infer the podresources directory from path %q", path)
    	}
    	// windows pipes are expected to use forward slashes: https://learn.microsoft.com/windows/win32/ipc/pipe-names
    	// so using `url` like we do on unix gives us unclear benefits - see https://github.com/kubernetes/kubernetes/issues/78628
    	// So we just construct the path from scratch.
    	// Format: \\ServerName\pipe\PipeName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/net/tcpsockopt_windows.go

    import (
    	"internal/syscall/windows"
    	"os"
    	"runtime"
    	"syscall"
    	"time"
    	"unsafe"
    )
    
    // Default values of KeepAliveTime and KeepAliveInterval on Windows,
    // check out https://learn.microsoft.com/en-us/windows/win32/winsock/sio-keepalive-vals#remarks for details.
    const (
    	defaultKeepAliveIdle     = 2 * time.Hour
    	defaultKeepAliveInterval = time.Second
    )
    
    func setKeepAliveIdle(fd *netFD, d time.Duration) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top