Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 411 - 420 of 773 for task0 (0.08 seconds)

  1. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/EclipseConventionPlugin.java

    import org.gradle.api.Project;
    import org.gradle.api.Transformer;
    import org.gradle.api.plugins.JavaBasePlugin;
    import org.gradle.api.plugins.JavaPluginExtension;
    import org.gradle.api.tasks.Copy;
    import org.gradle.api.tasks.Delete;
    import org.gradle.plugins.ide.eclipse.EclipsePlugin;
    import org.gradle.plugins.ide.eclipse.model.Classpath;
    import org.gradle.plugins.ide.eclipse.model.EclipseModel;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 09:43:51 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  2. build-logic-commons/basics/build.gradle.kts

            because("For manually defined KotlinSourceSet accessor - sourceSets.main.get().kotlin")
        }
    
        testImplementation(testLibs.junit5JupiterEngine)
    
        testRuntimeOnly(testLibs.junitPlatform)
    }
    
    tasks.test {
        useJUnitPlatform()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 903 bytes
    - Click Count (0)
  3. .github/workflows/codeql-analysis.init.gradle

     * 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.
     */
    
    allprojects {
        tasks.withType(JavaCompile).configureEach {
            outputs.doNotCacheIf("CodeQL scanning", { true })
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sat Oct 10 05:36:54 GMT 2020
    - 745 bytes
    - Click Count (0)
  4. .teamcity/src/main/kotlin/util/WarmupEc2Agent.kt

            param("defaultBranchName", "master")
            param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX))
        }
    
        steps {
            gradleWrapper {
                name = "Resolve all dependencies"
                tasks = "resolveAllDependencies"
                gradleParams =
                    (
                        buildToolGradleParameters(isContinue = false) + listOf("--dependency-verification", "lenient")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 12 09:12:03 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.detekt.gradle.kts

        // also check the project build file
        source.from(project.buildFile)
    }
    
    pluginManager.withPlugin("gradlebuild.code-quality") {
        tasks {
            named("codeQuality") {
                dependsOn(detekt)
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 20 10:11:35 GMT 2024
    - 1.1K bytes
    - Click Count (0)
  6. gradle.properties

    org.gradle.parallel=true
    
    # Enable configuration cache
    org.gradle.configuration-cache=true
    org.gradle.configuration-cache.problems=fail
    org.gradle.configuration-cache.parallel=true
    
    # Only configure projects reachable from the requested tasks, skipping unrelated subprojects
    org.gradle.isolated-projects=true
    
    android.useAndroidX=true
    kotlin.mpp.applyDefaultHierarchyTemplate=false
    
    androidBuild=false
    graalBuild=false
    loomBuild=false
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Mar 20 08:47:08 GMT 2026
    - 718 bytes
    - Click Count (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java

    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.execution.ProjectDependencyGraph;
    import org.apache.maven.project.MavenProject;
    
    /**
     * A build context that matches a Maven project to a given task segment, and the session to be used.
     * <p>
     * A note to the reader;
     * </p>
     * <p>
     * There are several issues/discussions regarding how "aggregator" plugins should be handled.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 3.5K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/groovy/elasticsearch.local-distribution.gradle

    // apply plugin:'elasticsearch.internal-distribution-download'
    
    elasticsearch_distributions {
      local {
        type = 'archive'
        architecture = Architecture.current()
      }
    }
    
    tasks.register('localDistro', Sync) {
      from(elasticsearch_distributions.local)
      into("build/distribution/local")
      doLast {
        logger.lifecycle("Elasticsearch distribution installed to ${destinationDir}.")
      }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.1K bytes
    - Click Count (0)
  9. build-logic-settings/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    description = "Provides settings plugins for configuring global build configuration"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 30 04:30:54 GMT 2025
    - 785 bytes
    - Click Count (0)
  10. build.gradle.kts

      alias(libs.plugins.shadow) apply false
      alias(libs.plugins.graalvm) apply false
      alias(libs.plugins.ksp) apply false
      alias(libs.plugins.burst) apply false
      id("okhttp.dokka-multimodule-conventions")
    }
    
    tasks.wrapper {
      distributionType = Wrapper.DistributionType.ALL
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 839 bytes
    - Click Count (1)
Back to Top