Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 431 - 440 of 773 for task0 (0.07 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java

        }
    
        public void registerBuildFailure(MavenProject project, Exception error, String task, long time) {
            buildFailuresByProject.put(getProjectKey(project), new BuildFailure(project, time, error));
        }
    
        public void registerBuildFailure(MavenProject project, Exception error, String task, Duration time) {
            buildFailuresByProject.put(getProjectKey(project), new BuildFailure(project, time, error));
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Dec 12 11:02:17 GMT 2024
    - 6K bytes
    - Click Count (0)
  2. .ci/jobs.t/elastic+elasticsearch+intake+multijob+bwc.yml

      - job-description: Elasticsearch %BRANCH% branch intake backwards compatibility checks.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 432 bytes
    - Click Count (0)
  3. .ci/jobs.t/elastic+elasticsearch+intake+multijob+rest-compat.yml

      - job-description: Elasticsearch %BRANCH% branch intake REST compatibility checks.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 449 bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+intake+multijob+part2.yml

      - job-description: Elasticsearch %BRANCH% branch intake check part 2.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 413 bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt

            param("env.PGP_SIGNING_KEY_PASSPHRASE", "%pgpSigningPassphrase%")
        }
        steps {
            gradleWrapper {
                name = "Publish Kotlin DSL Plugin"
                tasks = "clean :kotlin-dsl-plugins:publishPlugins"
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 19 08:02:04 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  6. build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/PreparePatchReleaseTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.buildutils.tasks
    
    import spock.lang.Specification
    
    class PreparePatchReleaseTest extends Specification {
    
        def "patch version is correctly bumped"() {
            expect:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:47:12 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/util/concurrent/ListenableFutureTask.java

      private final ExecutionList executionList = new ExecutionList();
    
      /**
       * Creates a {@code ListenableFutureTask} that will upon running, execute the given {@code
       * Callable}.
       *
       * @param callable the callable task
       * @since 10.0
       */
      public static <V extends @Nullable Object> ListenableFutureTask<V> create(Callable<V> callable) {
        return new ListenableFutureTask<>(callable);
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Feb 10 11:51:21 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/async-tests.md

    /// tip | İpucu
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  9. module-tests/build.gradle.kts

    // to attempt to avoid https://github.com/gradlex-org/extra-java-module-info/issues/221
    configurations.all {
      exclude(group = "org.jetbrains.dokka")
    }
    
    
    val testJavaVersion = project.testJavaVersion
    
    tasks.withType<Test> {
      useJUnitPlatform()
    
      enabled = testJavaVersion > 8
    
      javaLauncher.set(javaToolchains.launcherFor {
        languageVersion.set(JavaLanguageVersion.of(testJavaVersion))
      })
    }
    
    java {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/do_/ReplaceKeyInDo.java

    import com.fasterxml.jackson.databind.JsonNode;
    import com.fasterxml.jackson.databind.node.ObjectNode;
    import org.elasticsearch.gradle.internal.test.rest.transform.ReplaceByKey;
    import org.gradle.api.tasks.Internal;
    
    /**
     * A transformation to replace the key in a do. For example, change from "do":{"some-thing":{}} to "do":{"some-other-thing":{}}
     */
    public class ReplaceKeyInDo extends ReplaceByKey {
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.4K bytes
    - Click Count (0)
Back to Top