Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 215 for Sall (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                    config.clear()
                }
                testDirectory.file('initial-commit').createNewFile()
                git.add().addFilepattern("initial-commit").call()
                git.commit().setMessage("Initial commit").call()
            }
        }
    
        /**
         * Want syntax highlighting inside of IntelliJ? Consider using {@link AbstractIntegrationSpec#buildFile(String)}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultValueSourceProviderFactory.java

                    value.finalizeIfNotAlready();
                } finally {
                    // Don't leak the source implementation even if obtaining its value throws.
                    // This is mostly a theoretical possibility, but the call above is blocking, so it can be interrupted.
                    obtainedFrom = sourceRef.getAndSet(null);
                }
                Try<@org.jetbrains.annotations.Nullable T> obtained = value.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            def resultHandler = new TestResultHandler()
    
            when:
            def connector = toolingApi.connector()
            ProjectConnection connection = connector.connect() // using withConnection would call close after the closure
    
            def build = connection.newBuild()
            build.forTasks('hang')
            build.run(resultHandler)
            sync.waitForAllPendingCalls(resultHandler)
            connector.disconnect()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top