Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Win32 (0.52 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. 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)
Back to top