Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 252 for LEARN (0.03 sec)

  1. .github/workflows/codeql-analysis.yml

          matrix:
            # Override automatic language detection by changing the below list
            # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
            language: ['java']
            # Learn more...
            # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
    
        steps:
        - name: Checkout repository
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Oct 02 13:22:07 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildExternalPluginsValidationSmokeTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    /**
     * Smoke test verifying the external plugins used during the Gradle build itself.
     *
     * We validate the plugins during runtime, too. However, this test ensures that we learn about failures early,
     * i.e. the test is important since it shows if we need to change something in our build when we do the next
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/version_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package windows
    
    import (
    	"errors"
    	"sync"
    	"syscall"
    	"unsafe"
    )
    
    // https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/ns-wdm-_osversioninfow
    type _OSVERSIONINFOW struct {
    	osVersionInfoSize uint32
    	majorVersion      uint32
    	minorVersion      uint32
    	buildNumber       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    = Getting Started
    
    ++++
    <div class="badge-wrapper">
        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/012de84f-fcd3-45d4-9c4c-284382eb3f3f/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Introduction to Gradle for Developers&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    A published Ivy module can be consumed by Gradle (see <<declaring_dependencies.adoc#declaring-dependencies,Declaring Dependencies>>) and other tools that understand the Ivy format. You can learn about the fundamentals of publishing in <<publishing_setup.adoc#publishing_overview,Publishing Overview>>.
    
    [[publishing_ivy:usage]]
    == Usage
    
    To use the Ivy Publish Plugin, include the following in your build script:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. src/os/user/lookup_windows.go

    func lookupGroupName(groupname string) (string, error) {
    	sid, _, t, e := syscall.LookupSID("", groupname)
    	if e != nil {
    		return "", e
    	}
    	// https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-samr/7b2aeb27-92fc-41f6-8437-deb65d950921#gt_0387e636-5654-4910-9519-1f8326cf5ec0
    	// SidTypeAlias should also be treated as a group type next to SidTypeGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/README.md

      the services running at [telemetry.go.dev](https://telemetry.go.dev).
    
    ## Contributing
    
    This repository uses Gerrit for code changes. To learn how to submit changes to
    this repository, see https://golang.org/doc/contribute.html.
    
    The main issue tracker for the time repository is located at
    https://github.com/golang/go/issues. Prefix your issue with "x/telemetry:" in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Incremental Builds and Build Caching with Gradle&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Learn the basics of Gradle's caching system.
    
    ****
    **In this section you will:**
    
    - Turn on the local Build Cache
    - Understand caching
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. pkg/kubelet/util/util_windows.go

    		// the user supplied root directory named like "pod-resources" or so.
    		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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/api/internal/DocumentationRegistry.java

        public static final String DSL_PROPERTY_URL_FORMAT = "%s/dsl/%s.html#%s:%s";
        public static final String KOTLIN_DSL_URL_FORMAT = "%s/kotlin-dsl/gradle/%s";
        public static final String LEARN_MORE_STRING = "Learn more about Gradle by exploring our Samples at ";
    
        /**
         * Returns the location of the documentation for the given feature, referenced by id. The location may be local or remote.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 14:14:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top