Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for LEARN (0.09 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    	// subprocess in the default setup.
    	//
    	// 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)
  2. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

                    "Learn more about toolchain auto-detection at " + Documentation.userManual("toolchains", "sec:auto_detection").getUrl() + ".",
                    "Learn more about toolchain repositories at " + Documentation.userManual("toolchains", "sub:download_repositories").getUrl() + ".");
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/reparse_windows.go

    // Reparse tag values are taken from
    // https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/c8e77b37-3909-4fe6-a4ea-2b9d423b1ee4
    const (
    	FSCTL_SET_REPARSE_POINT    = 0x000900A4
    	IO_REPARSE_TAG_MOUNT_POINT = 0xA0000003
    	IO_REPARSE_TAG_DEDUP       = 0x80000013
    	IO_REPARSE_TAG_AF_UNIX     = 0x80000023
    
    	SYMLINK_FLAG_RELATIVE = 1
    )
    
    // These structures are described
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 07:15:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Take courses on DPE University&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    == For Software Developers
    
    For software developers that need to build, test, and publish their app, or add dependencies to their build, get started here:
    
    === 1. Core Concepts
    
    [sidebar]
    _Description_: *Learn how to invoke tasks and add dependencies.* +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. 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)
  6. manifests/charts/ztunnel/templates/NOTES.txt

    ztunnel successfully installed!
    
    To learn more about the release, try:
      $ helm status {{ .Release.Name }} -n {{ .Release.Namespace }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 02:09:42 UTC 2024
    - 200 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    include::{snippetsPath}/wrapper/simple/tests/wrapperBatchFileExecution.out[]
    ----
    
    Consult the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper reference>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_scans.adoc

    [[build_scans]]
    = Build Scans
    
    ++++
    <div class="badge-wrapper">
        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/b5069222-cfd0-4393-b645-7a2c713853d5/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">How to Use Build Scans&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    A build scan is a *representation of metadata captured* as you run your build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    <9> Each subproject has its own Gradle build script.
    
    Consult the <<directory_layout.adoc#dir:project_root,Gradle Directories reference>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/os/types_windows.go

    // isReparseTagNameSurrogate determines whether a tag's associated
    // 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)
Back to top