Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 227 for executor (0.9 sec)

  1. maven-core/lifecycle-executor.txt

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>process</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      .
      .
      .
    </plugins>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                }
    
                override fun close(): State {
                    if (executor.isShutdown) {
                        writer.close()
                    } else {
                        executor.submit {
                            writer.close()
                        }
                        executor.shutdown()
                    }
                    return Closed
                }
    
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

    import java.net.ServerSocket
    import java.net.Socket
    import java.util.concurrent.Executor
    import java.util.concurrent.ThreadFactory
    
    
    fun BindingsBuilder.unsupportedTypes() {
    
        // Live JVM state
        bind(unsupported<ClassLoader>())
        bind(unsupported<Thread>())
        bind(unsupported<ThreadFactory>())
        bind(unsupported<Executor>())
        bind(unsupported<FileDescriptor>())
        bind(unsupported<RandomAccessFile>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeIdeTest.kt

    import org.gradle.api.tasks.CacheableTask
    
    
    /**
     * A test that provides an IDE as environment for checking IDE and Gradle behavior during synchronization process.
     * These tests are running using `forking` executor, since current Gradle distribution has to be used as a Gradle version for IDE.
     */
    @CacheableTask
    abstract class SmokeIdeTest : DistributionTest() {
        override val prefix: String = "smokeIde"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 10:30:14 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

        /**
         * Executes an external command.
         *
         * This method blocks until the process terminates, with its result being returned.
         *
         * @param configuration The block to use to configure the [ExecSpec].
         * @return The result of the execution.
         */
        fun exec(configuration: Action<ExecSpec>): ExecResult
    
        /**
         * Executes an external Java process.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         * - A [org.gradle.api.Task].
         *   Converted to the task's output files.
         *   The task is executed if the file collection is used as an input to another task.
         * - A [org.gradle.api.tasks.TaskOutputs].
         *   Converted to the output files the related task.
         *   The task is executed if the file collection is used as an input to another task.
         * - Anything else is treated as a failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/VintageBuildTreeWorkController.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.composite.internal.BuildTreeWorkGraphController
    import org.gradle.execution.EntryTaskSelector
    import org.gradle.internal.build.ExecutionResult
    import org.gradle.internal.buildtree.BuildTreeWorkController
    import org.gradle.internal.buildtree.BuildTreeWorkExecutor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

                        text(" at execution time is unsupported.")
                    }
                }
                    .exception(
                        if (isExecutingOtherTask) {
                            "Execution of $runningTask caused invocation of '$invocationDescription' by $task at execution time which is unsupported."
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

    import org.gradle.execution.plan.ActionNode
    import org.gradle.execution.plan.CompositeNodeGroup
    import org.gradle.execution.plan.FinalizerGroup
    import org.gradle.execution.plan.LocalTaskNode
    import org.gradle.execution.plan.Node
    import org.gradle.execution.plan.NodeGroup
    import org.gradle.execution.plan.OrdinalGroup
    import org.gradle.execution.plan.OrdinalGroupFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginGradlePluginCrossVersionSmokeTest.kt

    import org.gradle.integtests.fixtures.RepoScriptBlockUtil
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.integtests.fixtures.versions.KotlinGradlePluginVersions
    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.fixtures.AbstractKotlinIntegrationTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top