Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Win32 (0.09 sec)

  1. src/cmd/cgo/internal/test/test.go

    #include <stddef.h>
    #include <stdint.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <unistd.h>
    #include <sys/stat.h>
    #include <errno.h>
    #cgo !darwin LDFLAGS: -lm
    
    #ifndef WIN32
    #include <pthread.h>
    #include <signal.h>
    #endif
    
    // alignment tests
    
    typedef unsigned char Uint8;
    typedef unsigned short Uint16;
    
    typedef enum {
     MOD1 = 0x0000,
     MODX = 0x8000
    } SDLMod;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. src/os/os_windows_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	wSharePath, err := syscall.UTF16PtrFromString(sharePath)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Per https://learn.microsoft.com/en-us/windows/win32/api/lmshare/ns-lmshare-share_info_2:
    	//
    	// “[The shi2_permissions field] indicates the shared resource's permissions
    	// for servers running with share-level security. A server running user-level
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys.go

    		return 0
    	}
    	// with drive letter
    	c := path[0]
    	if path[1] == ':' && ('a' <= c && c <= 'z' || 'A' <= c && c <= 'Z') {
    		return 2
    	}
    	// is it UNC? https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file
    	if l := len(path); l >= 5 && isSlash(path[0]) && isSlash(path[1]) &&
    		!isSlash(path[2]) && path[2] != '.' {
    		// first, leading `\\` and next shouldn't be `\`. its server name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/net/net.go

    GODEBUG environment variable (see package runtime) to go or cgo, as in:
    
    	export GODEBUG=netdns=go    # force pure Go resolver
    	export GODEBUG=netdns=cgo   # force native resolver (cgo, win32)
    
    The decision can also be forced while building the Go source tree
    by setting the netgo or netcgo build tag.
    
    A numeric netdns setting, as in GODEBUG=netdns=1, causes the resolver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. src/runtime/os_windows.go

    		throw("usage")
    	}
    	f := stdcall2(_GetProcAddress, lib, uintptr(unsafe.Pointer(&name[0])))
    	return stdFunction(unsafe.Pointer(f))
    }
    
    const _MAX_PATH = 260 // https://docs.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation
    var sysDirectory [_MAX_PATH + 1]byte
    var sysDirectoryLen uintptr
    
    func initSysDirectory() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  6. cmd/kubelet/app/options/options.go

    	// The default priority class associated with any process in Windows is NORMAL_PRIORITY_CLASS. Keeping it as is
    	// to maintain backwards compatibility.
    	// Source: https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
    	WindowsPriorityClass string
    
    	// experimentalMounterPath is the path of mounter binary. Leave empty to use the default mount path
    	ExperimentalMounterPath string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. src/os/exec/exec_test.go

    			// in the Windows registry, and I'm not sure if it is possible to remove
    			// a registry variable in a program's environment.
    			//
    			// Per https://learn.microsoft.com/en-us/windows/win32/api/processenv/nf-processenv-needcurrentdirectoryforexepathw#remarks,
    			// “the existence of the NoDefaultCurrentDirectoryInExePath environment
    			// variable is checked, and not its value.”
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  8. CREDITS

     * for any reason the author might be held responsible for any consequences
     * of copying or use, license is withheld.
     */
    
    
    --------------------------------------------------
    For lib/py/compat/win32/stdint.h
    
    // ISO C9x  compliant stdint.h for Microsoft Visual Studio
    // Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124
    //
    //  Copyright (c) 2006-2008 Alexander Chemeris
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top