Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Win32 (0.18 sec)

  1. src/os/types_windows.go

    // reparse point is a surrogate for another named entity (for example, a mounted folder).
    //
    // See https://learn.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-isreparsetagnamesurrogate
    // and https://learn.microsoft.com/en-us/windows/win32/fileio/reparse-point-tags.
    func (fs *fileStat) isReparseTagNameSurrogate() bool {
    	// True for IO_REPARSE_TAG_SYMLINK and IO_REPARSE_TAG_MOUNT_POINT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/internal/poll/sendfile_windows.go

    			return
    		}
    	}
    
    	// TransmitFile can be invoked in one call with at most
    	// 2,147,483,646 bytes: the maximum value for a 32-bit integer minus 1.
    	// See https://docs.microsoft.com/en-us/windows/win32/api/mswsock/nf-mswsock-transmitfile
    	const maxChunkSizePerCall = int64(0x7fffffff - 1)
    
    	for n > 0 {
    		chunkSize := maxChunkSizePerCall
    		if chunkSize > n {
    			chunkSize = n
    		}
    
    		o.qty = uint32(chunkSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    	//
    	// Ensure no new console is attached to the subprocess by setting CREATE_NO_WINDOW.
    	//   https://learn.microsoft.com/en-us/windows/console/creation-of-a-console
    	//   https://learn.microsoft.com/en-us/windows/win32/procthread/process-creation-flags
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		CreationFlags: windows.CREATE_NO_WINDOW,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. pkg/kubelet/util/util_windows.go

    		return "", fmt.Errorf("cannot infer the podresources directory from path %q", path)
    	}
    	// windows pipes are expected to use forward slashes: https://learn.microsoft.com/windows/win32/ipc/pipe-names
    	// so using `url` like we do on unix gives us unclear benefits - see https://github.com/kubernetes/kubernetes/issues/78628
    	// So we just construct the path from scratch.
    	// Format: \\ServerName\pipe\PipeName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/internal/filepathlite/path_windows.go

    			case "\u00b2", "\u00b3", "\u00b9":
    				return true
    			}
    			return false
    		}
    	}
    
    	// Passing CONIN$ or CONOUT$ to CreateFile opens a console handle.
    	// https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilea#consoles
    	//
    	// While CONIN$ and CONOUT$ aren't documented as being files,
    	// they behave the same as CON. For example, ./CONIN$ also opens the console input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. pkg/util/filesystem/util_windows.go

    	// we need to dial the file and check if we receive an error to determine if a file is Unix Domain Socket file.
    
    	// Note that querrying for the Reparse Points (https://docs.microsoft.com/en-us/windows/win32/fileio/reparse-points)
    	// for the file (using FSCTL_GET_REPARSE_POINT) and checking for reparse tag: reparseTagSocket
    	// does NOT work in 1809 if the socket file is created within a bind mounted directory by a container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/os/path_windows.go

    // directory results in a path that is too long, fixLongPath returns
    // the absolute path with the extended-length prefix.
    //
    // See https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file#maximum-path-length-limitation
    func fixLongPath(path string) string {
    	if windows.CanUseLongPaths {
    		return path
    	}
    	return addExtendedPrefix(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/os/stat_windows.go

    	if err == windows.ERROR_INVALID_PARAMETER {
    		// Console handles, like "\\.\con", require generic read access. See
    		// https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew#consoles.
    		// We haven't set it previously because it is normally not required
    		// to read attributes and some files may not allow it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

            private String resolveNativePrefix() {
                String arch = System.getProperty("os.arch");
                if ("i386".equals(arch)) {
                    arch = "x86";
                }
                return "win32-" + arch;
            }
    
            @Override
            public String getPathVar() {
                return "Path";
            }
        }
    
        static class Unix extends OperatingSystem {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		//   cpuMaximum is documented at https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-containers/resource-controls
    		//   the range and how it relates to number of CPUs is at https://docs.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-jobobject_cpu_rate_control_information
    		//   For process isolation, these are applied to the job object setting JOB_OBJECT_CPU_RATE_CONTROL_ENABLE, which can be set to either
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top