Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 201 for procMs (0.24 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

    import java.net.URLClassLoader;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Function;
    
    /**
     * Constructs the application and implementation classpaths for a test process,
     * while also optionally loading test framework implementation dependencies from
     * the distribution.
     *
     * @see ForkedTestClasspath
     */
    public class ForkedTestClasspathFactory {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/build.gradle.kts

        api(libs.nativePlatform)
        api(libs.nativePlatformFileEvents)
        api(libs.slf4jApi)
        implementation(project(":functional"))
    
        implementation(libs.guava)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":resources"))
        testImplementation(project(":persistent-cache"))
        testImplementation(project(":build-option"))
        testImplementation(project(":enterprise-operations"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process
    
    import org.gradle.api.DefaultTask
    import org.gradle.api.tasks.TaskAction
    import org.gradle.process.ExecOperations
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkQueue
    import org.gradle.workers.WorkerExecutor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

                node.accept(new DependencyGraphDumper(logger::debug));
            }
    
            try {
                process(result, repoSystem.resolveDependencies(session, depRequest).getArtifactResults());
            } catch (org.eclipse.aether.resolution.DependencyResolutionException e) {
                process(result, e.getResult().getArtifactResults());
    
                throw new DependencyResolutionException(
                        result,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/build.gradle.kts

        api(project(":platform-jvm"))
        api(project(":problems-api"))
        api(project(":process-services"))
        api(project(":snapshots"))
        api(project(":test-suites-base"))
        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":worker-main"))
        api(project(":workers"))
        api(project(":build-process-services"))
    
        api(libs.asm)
        api(libs.fastutil)
        api(libs.groovy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/resources/build.gradle.kts

        api(libs.jsr305)
    
        implementation(project(":files"))
        implementation(project(":logging"))
    
        implementation(libs.guava)
        implementation(libs.commonsIo)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":core-api"))
        testImplementation(project(":file-collections"))
        testImplementation(project(":snapshots"))
    
        testImplementation(testFixtures(project(":core")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 970 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute1QualifiedStaticInstrumentationInDynamicGroovyWithoutIndyIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    /**
     * Test cases for single-argument {@code ProcessGroovyMethods.execute}:
     * <pre>
     *     ProcessGroovyMethod.execute("echo 123")
     *     ProcessGroovyMethod.execute(["echo", "123"])
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute1InstanceInstrumentationInDynamicGroovyWithoutIndyIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    /**
     * Test cases for single-argument String and String collection {@code execute} extension:
     * <pre>
     *     "echo 123".execute()
     *     ["echo", "123"].execute()
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessBuilderInstrumentationInDynamicGroovyIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    /**
     * Test cases for {@code ProcessBuilder.start}.
     */
    class ProcessBuilderInstrumentationInDynamicGroovyIntegrationTest extends AbstractProcessInstrumentationInDynamicGroovyIntegrationTest {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

                // We assume the current process is compatible when considering these properties.
                requestContext.getNativeServicesMode(),
                requestContext.getPriority()
            );
        }
    
        private Runnable runBuildInProcess(StartParameterInternal startParameter, DaemonParameters daemonParameters) {
            // Set the system properties and use this process
            Properties properties = new Properties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top