Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 635 for Windows (6.17 sec)

  1. src/crypto/rand/rand_windows.go

    // license that can be found in the LICENSE file.
    
    // Windows cryptographically secure pseudorandom number
    // generator.
    
    package rand
    
    import (
    	"internal/syscall/windows"
    )
    
    func init() { Reader = &rngReader{} }
    
    type rngReader struct{}
    
    func (r *rngReader) Read(b []byte) (int, error) {
    	if err := windows.ProcessPrng(b); err != nil {
    		return 0, err
    	}
    	return len(b), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 20 18:35:47 UTC 2023
    - 488 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/go_version.txt

    L1:# test that go version doesn't panic on non-go binaries
    L2:# See Issue #49181
    L3:
    L4:[exec:/bin/true] cp /bin/true true
    L5:[exec:C:\windows\system32\help.exe] cp C:\windows\system32\help.exe help.exe
    L6:
    L7:go version -m .
    L8:! stdout .
    L9:! stderr .
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 08:58:05 UTC 2021
    - 236 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap.go

    	f    *os.File
    	Data []byte
    	// Some windows magic
    	Windows interface{}
    }
    
    // Mmap maps the given file into memory.
    // When remapping a file, pass the most recently returned Data.
    func Mmap(f *os.File, data *Data) (Data, error) {
    	return mmapFile(f, data)
    }
    
    // Munmap unmaps the given file from memory.
    func Munmap(d *Data) error {
    	// d.f.Close() on Windows still gets an error
    	return munmapFile(*d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1002 bytes
    - Viewed (0)
  4. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon",
        "groups" : [ {
          "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. apache-maven/README.txt

        that, additional disk space will be used for your local Maven repository. The size
        of your local repository will vary depending on usage but expect at least 500MB.
      Operating System:
        Windows:
          Windows 2000 or above.
        Unix based systems (Linux, Solaris and Mac OS X) and others:
          No minimum requirement.
    
      Installing Maven
      ----------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 13 20:21:20 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/outbuf_windows.go

    	// to the Windows docs) in addition to the FlushViewOfFile call
    	// above, " ... to flush all the dirty pages plus the metadata for
    	// the file and ensure that they are physically written to disk".
    	// Windows DOC links:
    	//
    	// https://docs.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-flushviewoffile
    	// https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-flushfilebuffers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 01:59:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/aliases.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package windows
    
    import "syscall"
    
    type Errno = syscall.Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 281 bytes
    - Viewed (0)
  8. src/debug/dwarf/line_test.go

    	{"a", "b", "a/b"},
    	{"a", "", "a"},
    	{"", "b", "b"},
    	{"/a", "b", "/a/b"},
    	{"/a/", "b", "/a/b"},
    
    	{`C:\Windows\`, `System32`, `C:\Windows\System32`},
    	{`C:\Windows\`, ``, `C:\Windows\`},
    	{`C:\`, `Windows`, `C:\Windows`},
    	{`C:\Windows\`, `C:System32`, `C:\Windows\System32`},
    	{`C:\Windows`, `a/b`, `C:\Windows\a/b`},
    	{`\\host\share\`, `foo`, `\\host\share\foo`},
    	{`\\host\share\`, `foo\bar`, `\\host\share\foo\bar`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue8517.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !windows
    
    package cgotest
    
    import "testing"
    
    func test8517(t *testing.T) {
    	t.Skip("skipping windows only test")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 286 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/mksyscall.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build generate
    
    package windows
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 367 bytes
    - Viewed (0)
Back to top