Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 277 for microsoft (0.14 sec)

  1. tests/tests_all.sh

    fi
    
    # SqlServer for Mac M1
    if [[ -z $GITHUB_ACTION ]]; then
      if [ -d tests ]
      then
        cd tests
        if [[ $(uname -a) == *" arm64" ]]; then
          MSSQL_IMAGE=mcr.microsoft.com/azure-sql-edge docker-compose start || true
          go install github.com/microsoft/go-sqlcmd/cmd/sqlcmd@latest || true
          SQLCMDPASSWORD=LoremIpsum86 sqlcmd -U sa -S localhost:9930 -Q "IF DB_ID('gorm') IS NULL CREATE DATABASE gorm" > /dev/null || true
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. internal/lock/lock_windows.go

    	modkernel32    = windows.NewLazySystemDLL("kernel32.dll")
    	procLockFileEx = modkernel32.NewProc("LockFileEx")
    )
    
    const (
    	// https://msdn.microsoft.com/en-us/library/windows/desktop/aa365203(v=vs.85).aspx
    	lockFileExclusiveLock   = 2
    	lockFileFailImmediately = 1
    
    	// see https://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx
    	errLockViolation syscall.Errno = 0x21
    )
    
    // lockedOpenFile is an internal function.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VswhereSpec.groovy

        }
    
        void vswhereInProgramFiles() {
            x86Registry()
            vswhere = programFiles.createDir("Microsoft Visual Studio/Installer").createFile("vswhere.exe")
        }
    
        void vswhereInProgramFilesX86() {
            x64Registry()
            vswhere = programFilesX86.createDir("Microsoft Visual Studio/Installer").createFile("vswhere.exe")
        }
    
        void vswhereNotFound() {
            x64Registry()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFileTest.groovy

        def solutionFile = new VisualStudioSolutionFile()
    
        def "setup"() {
            solutionFile.loadDefaults()
        }
    
        def "empty solution file"() {
            expect:
            generatedSolution.content ==
    """Microsoft Visual Studio Solution File, Format Version 11.00
    # Visual C++ Express 2010
    
    Global
    	GlobalSection(SolutionConfigurationPlatforms) = preSolution
    	EndGlobalSection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. cmd/kubelet/app/init_windows.go

    	"k8s.io/kubernetes/pkg/windows/service"
    )
    
    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{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 01:54:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/reparse_windows.go

    	SYMLINK_FLAG_RELATIVE = 1
    )
    
    // These structures are described
    // in https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/ca069dad-ed16-42aa-b057-b6b207f447cc
    // and https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/b41f1cbf-10df-4a47-98d4-1c52a833d913.
    
    type REPARSE_DATA_BUFFER struct {
    	ReparseTag        uint32
    	ReparseDataLength uint16
    	Reserved          uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 07:15:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildVersionLocator.java

            }
    
            ExecOutput vsWhereOutput = new TestFile(vswhere).exec("-version", String.format("[%s.0,%s.0)", vsVersion.getMajor(), vsVersion.getMajor() + 1), "-products", "*", "-requires", "Microsoft.Component.MSBuild", "-property", "installationPath");
            if (!vsWhereOutput.getError().trim().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/os/user/lookup_windows.go

    	// called "Domain Users":
    	// https://support.microsoft.com/en-us/help/243330/well-known-security-identifiers-in-windows-operating-systems
    	// SID: S-1-5-21domain-513
    	//
    	// The correct way to obtain the primary group of a domain user is
    	// probing the user primaryGroupID attribute in the server Active Directory:
    	// https://learn.microsoft.com/en-us/windows/win32/adschema/a-primarygroupid
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/DefaultVswhereVersionLocator.java

            "ProgramFilesDir",
            "ProgramFilesDir (x86)"
        };
    
        private static final String REGISTRY_PATH_WINDOWS = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion";
        private static final String VISUAL_STUDIO_INSTALLER = "Microsoft Visual Studio/Installer";
        private static final String VSWHERE_EXE = "vswhere.exe";
    
        public DefaultVswhereVersionLocator(WindowsRegistry windowsRegistry, OperatingSystem os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top