Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 223 for Sall (0.21 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

    class FullExceptionFormatterTest extends Specification {
        def testDescriptor = new SimpleTestDescriptor()
        def testLogging = Mock(TestLogging)
        def formatter = new FullExceptionFormatter(testLogging)
    
        def "shows all exceptions that have occurred for a test"() {
            expect:
            formatter.format(testDescriptor, [new RuntimeException("oops"), new Exception("ouch")]) == """\
        java.lang.RuntimeException: oops
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            when:
            def dupesWithCount = dupes.collectEntries { [it.key, it.value.size()]}
    
            then:
            dupesWithCount.isEmpty()
        }
    
        def "all files under lib directory are jars"() {
            when:
            def nonJarLibEntries = libZipEntries.findAll { !it.name.endsWith(".jar") }
    
            then:
            nonJarLibEntries.isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

    
    /**
     * Creates a container for managing named objects of the specified type.
     *
     * The specified type must have a public constructor which takes the name as a [String] parameter.
     *
     * All objects **MUST** expose their name as a bean property named `name`.
     * The name must be constant for the life of the object.
     *
     * @param T The type of objects for the container to contain.
     * @return The container.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

            where:
            type << [BytecodeInterceptorType.INSTRUMENTATION, BytecodeInterceptorType.BYTECODE_UPGRADE]
        }
    
        def "should group visitMethodInsn logic by call owner"() {
            given:
            def givenFirstSource = source """
                package org.gradle.test;
                import org.gradle.internal.instrumentation.api.annotations.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

                projectConfigured(":")
                modelsCreated(":a")
                modelsReused(":", ":b", ":buildSrc")
            }
            outputContains("creating model for project ':a'")
        }
    
        def "invalidates all cached models when build scoped input changes"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

        public SystemApplicationClassLoaderWorker(DataInputStream configInputStream) {
            this.configInputStream = configInputStream;
        }
    
        @Override
        public Void call() throws Exception {
            if (System.getProperty("org.gradle.worker.test.stuck") != null) {
                // Simulate a stuck worker. There's probably a way to inject this failure...
                Thread.sleep(30000);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/DefaultResourceLockCoordinationServiceTest.groovy

                    }
                })
    
                thread.blockUntil.executed2
            }
    
            then:
            lock1.lockedState
            lock2.lockedState
        }
    
        def "interrupting a withState call waiting for a resource makes it retry acquiring the lock"() {
            def lock1 = resourceLock("lock1", true)
            def count = 0
            Thread blockingThread = null
    
            when:
            async {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 17:16:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            return new ExplicitDeprecationMessageBuilder(feature);
        }
    
        /**
         * Indirect usage means that stack trace at the time the deprecation is logged does not indicate the call site.
         * This directs GE to not display unhelpful stacktraces with the deprecation.
         * <p>
         * Output: ${feature} has been deprecated.
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

                            localCandidates.add(cl);
                        }
                    }
                    if (localCandidates.isEmpty()) {
                        // Classloaders in this entry have all been garbage collected, so remove the entry
                        classLoaders.remove(localClassLoaderMapping.details.uuid);
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

        public static final List<String> ALLOW_ENVIRONMENT_VARIABLE_OVERWRITE = ImmutableList.of("--add-opens=java.base/java.util=ALL-UNNAMED");
    
        private final ToolchainConfiguration toolchainConfiguration = new DefaultToolchainConfiguration();
        private final File gradleUserHomeDir;
    
        private File baseDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top