Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for Win32 (0.33 sec)

  1. src/os/user/lookup_windows.go

    		query = username
    	}
    	q, err := syscall.UTF16PtrFromString(query)
    	if err != nil {
    		return nil, err
    	}
    	var p0 *byte
    	var entriesRead, totalEntries uint32
    	// https://learn.microsoft.com/en-us/windows/win32/api/lmaccess/nf-lmaccess-netusergetlocalgroups
    	// NetUserGetLocalGroups() would return a list of LocalGroupUserInfo0
    	// elements which hold the names of local groups where the user participates.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. ci/devinfra/docker_windows/Dockerfile

            | Select ifIndex).ifIndex; \
        New-NetRoute -DestinationPrefix 169.254.169.254/32 -InterfaceIndex $ifIndex -NextHop $gateway
    
    # Enable Long Paths for Win32 File/Folder APIs.
    RUN New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem \
            -Name LongPathsEnabled -Value 1 -PropertyType DWORD -Force
    
    # Install Visual C++ Redistributable for Visual Studio 2015-2022.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

                    }
                }
                subprojects {
                    apply plugin: 'cpp'
    
                    model {
                        platforms {
                            win32 {
                                architecture "i386"
                            }
                        }
                        buildTypes {
                            debug
                            release
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/pe.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // PE (Portable Executable) file writing
    // https://docs.microsoft.com/en-us/windows/win32/debug/pe-format
    
    package ld
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/pe"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/link/internal/loadpe/ldpe.go

    			// is used to indicate that the COFF object supports SEH.
    			// Go doesn't support SEH on windows/386, so we can ignore this symbol.
    			// See https://learn.microsoft.com/en-us/windows/win32/debug/pe-format#the-sxdata-section
    			continue
    		}
    		var sect *pe.Section
    		if pesym.SectionNumber > 0 {
    			sect = f.Sections[pesym.SectionNumber-1]
    			if _, found := state.sectsyms[sect]; !found {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. cluster/gce/windows/common.psm1

    [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
    public static extern bool CloseHandle(
      IntPtr hObject
    );
    '@
    $Kernel32 = Add-Type -MemberDefinition $SyscallDefinitions -Name 'Kernel32' -Namespace 'Win32' -PassThru
    
    # Close-Handle closes the specified open file handle.
    # On failure, throws an exception.
    function Close-Handle {
      param (
        [parameter(Mandatory=$true)] [System.IntPtr]$Handle
      )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  10. 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)
Back to top