Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,556 for Sall (0.12 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.ApplicationPluginConvention.xml

                </tr>
                <tr>
                    <td>applicationDistribution</td>
                    <td>A copy spec that includes all of the contents of <literal>src/dist</literal>, copies the start scripts into <literal>bin</literal>, and copies the built jar and all dependencies into <literal>lib</literal></td>
                </tr>
                <tr>
                    <td>executableDir</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionTimeTaskConfigurationIntegrationTest.groovy

            when:
            executer.withArgument("--continue")
            fails("broken1", "broken2", "broken3")
    
            then:
            failure.assertHasCause("Cannot call ${description} on task ':broken1' after task has started execution.")
            failure.assertHasCause("Cannot call ${description} on task ':broken2' after task has started execution.")
    
            where:
            config                                                      | description
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/CachingServiceLocator.java

            if (allServices.containsKey(serviceType)) {
                return Cast.uncheckedNonnullCast(allServices.get(serviceType));
            }
            List<T> all = delegate.getAll(serviceType);
            allServices.put(serviceType, all);
            return all;
        }
    
        @Override
        public synchronized <T> DefaultServiceLocator.ServiceFactory<T> getFactory(Class<T> serviceType) throws UnknownServiceException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

            this.strict = false;
            return this;
        }
    
        /**
         * Providing a scope makes the resulting {@link ServiceRegistry}
         * validate all registered services for being annotated with the given scope.
         * <p>
         * All registered services require the {@link org.gradle.internal.service.scopes.ServiceScope @ServiceScope}
         * annotation to be present and contain the given scope.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/developingPlugins/customTask/kotlin/buildSrc/src/main/java/org/myorg/LatestArtifactVersion.java

        @TaskAction
        public void resolveLatestVersion() {
            System.out.println("Retrieving artifact " + getCoordinates().get() + " from " + getServerUrl().get());
            // Issue HTTP call and parse response
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 22:31:35 UTC 2024
    - 629 bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

        def "captures plugin application events"() {
            given:
            file("build.gradle") << "apply plugin: 'java'"
    
            when:
            succeeds "build"
    
            then:
            def plugins = operations.all(ApplyPluginBuildOperationType) {
                it.details.targetType == "project" &&
                    it.details.targetPath == ":" &&
                    it.details.buildPath == ":"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/MultiProjectDependencyLockingIntegrationTest.groovy

            buildFile << """
    allprojects {
        apply plugin: 'java-library'
        repositories {
            maven { url "${mavenRepo.uri}" }
        }
    }
    
    project(':first') {
        configurations.all {
            resolutionStrategy.activateDependencyLocking()
        }
        dependencies {
            api 'org:foo:[1.0,2.0)'
        }
    }
    
    project(':second') {
        dependencies {
            implementation project(':first')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/commandLineOption-stringOption/kotlin/buildSrc/src/main/java/UrlVerify.java

        @Input
        public String getUrl() {
            return url;
        }
    
        @TaskAction
        public void verify() {
            getLogger().quiet("Verifying URL '{}'", url);
    
            // verify URL by making a HTTP call
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 665 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildActionVersion2.java

    import java.io.Serializable;
    
    /**
     * <p>DO NOT CHANGE THIS INTERFACE - it is part of the cross-version protocol.
     *
     * <p>Consumer compatibility: This interface is implemented by all consumer versions from 4.4.</p>
     * <p>Provider compatibility: This interface is consumed by all provider versions from 4.4.</p>
     *
     * @since 4.4
     */
    public interface InternalBuildActionVersion2<T> extends InternalProtocolInterface, Serializable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/testFixtures/groovy/org/gradle/quality/integtest/fixtures/CheckstyleCoverage.groovy

        private final static List<String> JDK11_REQUIRED = ['10.3.3'].asImmutable()
        private final static List<String> ALL = JDK8_SUPPORTED + JDK11_REQUIRED
    
        static List<String> getSupportedVersionsByJdk() {
            JavaVersion.current() >= JavaVersion.VERSION_11 ? ALL : JDK8_SUPPORTED
        }
    
        static JavaVersion getMinimumSupportedJdkVersion(VersionNumber checkstyleVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top