Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,743 for scriptId (0.4 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    This can easily be handled by conditionally applying a version-compliant script.
    
    NOTE: The version-compliant script should reside somewhere other than the `init.d` directory (such as a sub-directory), so it is not automatically applied.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/scripts/ScriptOriginUtil.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scripts;
    
    public class ScriptOriginUtil {
    
        /**
         * Extracts the class identifier of the value defined in a build script
         * independent of its absolute path.
         *
         * The identifier depends on the original class name and the content hash of the script.
         * As such it can be used for build caching between different locations.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 24 12:36:00 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/InitScriptIntegrationTest.groovy

                        println "Hello from buildSrc"
                    }
                }
    
                build.dependsOn(helloFromBuildSrc)
            """
        }
    
        @Issue(['GRADLE-1457', 'GRADLE-3197'])
        def 'init scripts passed on the command line are applied to buildSrc'() {
            given:
            settingsFile << "rootProject.name = 'hello'"
            createProject()
            file("init.gradle") << initScript()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    |===
    
    [[sec:build_script_plugins]]
    == Script plugins
    
    *Script plugins* are typically small, local plugins written in script files for tasks specific to a single build or project.
    They do not need to be reused across multiple projects.
    Script plugins *are not recommended* but many other forms of plugins evolve from script plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

            """
    
            then:
            succeeds("help")
        }
    
        def "adding precompiled script support does not fail when there are no precompiled scripts"() {
            when:
            enablePrecompiledPluginsInBuildSrc()
    
            then:
            succeeds("help")
        }
    
        def "can apply a precompiled script plugin by id"() {
            given:
            enablePrecompiledPluginsInBuildSrc()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  6. hack/verify-all.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script runs all the verify scripts respectively, so we should run
    # `hack/verify-all.sh` before submit a PR. It is equivalent to `make verify`.
    # Usage: `hack/verify-all.sh` or `make verify`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/vcstest/vcstest_test.go

    	"net"
    	"net/http"
    	"net/http/httptest"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    	"testing"
    	"time"
    )
    
    var (
    	dir  = flag.String("dir", "../../../testdata/vcstest", "directory containing scripts to serve")
    	host = flag.String("host", "localhost", "hostname on which to serve HTTP")
    	port = flag.Int("port", -1, "port on which to serve HTTP; if nonnegative, skips running tests")
    )
    
    func TestMain(m *testing.M) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 16:04:21 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. hack/jenkins/test-dockerized.sh

    # reports in ${WORKSPACE}/artifacts. This script is intended to be run from
    # kubekins-test container with a kubernetes repo mapped in. See
    # k8s.io/test-infra/scenarios/kubernetes_verify.py
    
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    # Until all GOPATH references are removed from all build scripts as well,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Classes that enable JVM application script generation.
     */
    @NonNullApi
    package org.gradle.jvm.application.scripts;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 774 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginAware.java

         *
         * @return the plugin container
         * @see #apply
         * @see PluginManager#hasPlugin(String)
         */
        PluginContainer getPlugins();
    
        /**
         * Applies zero or more plugins or scripts.
         * <p>
         * The given closure is used to configure an {@link ObjectConfigurationAction}, which “builds” the plugin application.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top