Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 310 for Sall (0.03 sec)

  1. platforms/jvm/language-java/build.gradle.kts

        testImplementation(libs.nativePlatform) {
            because("Required for SystemInfo")
        }
    
        integTestImplementation(projects.messaging)
        // TODO: Make these available for all integration tests? Maybe all tests?
        integTestImplementation(libs.jetbrainsAnnotations)
    
        testFixturesApi(testFixtures(project(":language-jvm")))
        testFixturesImplementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonRegistryServicesTest.groovy

        }
    
        @Rule ConcurrentTestUtil concurrent = new ConcurrentTestUtil()
    
        def "the registry can be concurrently written to"() {
            when:
            // obtain localhost address ahead of time as the first call in a JVM can take multiple secs in some systems
            def localhost = Inet6Address.getLocalHost()
            def registry = registry("someDir").get(DaemonRegistry)
            5.times { idx ->
                concurrent.start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/documentation/samples/build.gradle.kts

        integTestImplementation(libs.guava)
        integTestImplementation(libs.ant)
        integTestImplementation(libs.samplesCheck) {
            exclude(group = "org.codehaus.groovy", module = "groovy-all")
        }
        integTestImplementation(testFixtures(project(":core")))
        integTestImplementation(testFixtures(project(":model-core")))
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/NewDefaultProjectTest.groovy

    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    
    import static org.gradle.util.TestUtil.createChildProject
    
    class NewDefaultProjectTest extends AbstractProjectBuilderSpec {
        def "provides all tasks recursively"() {
            def a = createChildProject(project, "a")
    
            [project, a].each { it.task "foo"; it.task "bar" }
    
            when:
            def rootTasks = project.getAllTasks(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DaemonJavaCompiler.java

                javaForkOptions.jvmArgs(
                    "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
                    "--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"
                );
            } else {
                // In JDK 8 and below, the compiler internal classes are in tools.jar.
                File toolsJar = jvm.getToolsJar();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingClosure.kt

            val numClosureArgs = delegate.maximumNumberOfParameters
            val finalArgs: Array<out Any> = args.take(numClosureArgs).map { trackingProjectAccess(crossProjectModelAccess, referrerProject, it) }.toTypedArray()
            delegate.call(*finalArgs)
        }
    
        override fun setDelegate(delegateObject: Any) {
            delegate.delegate = trackingProjectAccess(crossProjectModelAccess, referrerProject, delegateObject)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileModeAccessor.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    public interface FileModeAccessor {
        /**
         * @param f The file to get the mode for. Note that all symlinks are followed.
         * @return The unix mode of the file
         */
        int getUnixMode(File f) throws Exception;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 898 bytes
    - Viewed (0)
  8. subprojects/core-platform/build.gradle.kts

    dependencies {
        runtime(project(":installation-beacon"))
        runtime(project(":api-metadata"))
        runtime(project(":daemon-server")) {
            because("This is the Gradle daemon implementation, which transitively depends on all other core projects.")
        }
        runtime(project(":gradle-cli-main")) {
            because("This is the entry point of the `gradle` command.")
        }
        runtime(project(":daemon-main")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/ClassBoundCallInterceptor.java

         * to be the {@code expectedReceiver} passed to the constructor.
         *
         * @param invocation the arguments supplied by the caller
         * @param consumer the class that invokes the intercepted call
         * @return the value to return to the caller
         * @throws Throwable if necessary to propagate it to the caller
         */
        protected abstract Object interceptSafe(Invocation invocation, String consumer) throws Throwable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/GradleException.java

     * limitations under the License.
     */
    
    package org.gradle.api;
    
    import javax.annotation.Nullable;
    
    /**
     * <p><code>GradleException</code> is the base class of all exceptions thrown by Gradle.</p>
     */
    public class GradleException extends RuntimeException {
        public GradleException() {
            super();
        }
    
        public GradleException(String message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top