Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 244 for reregistering (0.26 sec)

  1. testing/smoke-ide-test/build.gradle.kts

    val smokeIdeTestDistributionRuntimeOnly: Configuration by configurations
    val ideStarter by configurations.creating {
        isVisible = false
        isCanBeConsumed = false
    }
    
    val unzipIdeStarter by tasks.registering(ProcessResources::class) {
        from(zipTree(ideStarter.elements.map { it.single() }))
        into(layout.buildDirectory.dir("ideStarter"))
    }
    
    plugins.withType<IdeaPlugin> {
        with(model) {
            module {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 18:13:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

    }
    
    // publish plugin to local repository for integration testing -----------------
    // See AbstractPluginTest
    val localRepository = layout.buildDirectory.dir("repository")
    
    val publishPluginsToTestRepository by tasks.registering {
        dependsOn("publishPluginMavenPublicationToTestRepository")
        val repoDir = localRepository // Prevent capturing the Gradle script instance for configuration cache compatibility
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainerTest.groovy

            container.newElement("c", [3], null)
    
            expect:
            container.conflicts.size() == 1
            container.popConflict().toString() == "a,b,c:3"
        }
    
        def "allows registering multiple elements with the same replacedBy before the replacedBy"() {
            container.newElement("a", [1], "c")
            container.newElement("b", [2], "c")
            container.newElement("c", [3], null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Provides classes, interfaces and annotations for registering and implementing artifact transforms.
     *
     * <p>
     *     To register an artifact transform, use {@link org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(java.lang.Class, org.gradle.api.Action)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 06:14:56 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    ----
    ====
    
    == Registering a build service and connecting it to a task
    
    To create a build service, you register the service instance using the link:{javadocPath}/org/gradle/api/services/BuildServiceRegistry.html#registerIfAbsent-java.lang.String-java.lang.Class-org.gradle.api.Action-[BuildServiceRegistry.registerIfAbsent()] method.
    Registering the service does not create the service instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/report-aggregation/src/main/kotlin/com.example.report-aggregation.gradle.kts

        }
    }
    
    // Register a code coverage report task to generate the aggregated report
    val codeCoverageReport by tasks.registering(JacocoReport::class) {
        additionalClassDirs(classesPath.filter { it.isDirectory() })
        additionalSourceDirs(sourcesPath.incoming.artifactView { lenient(true) }.files)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild.api-metadata.gradle.kts

     * Parameter names for the Gradle API.
     */
    plugins {
        java
    }
    
    val apiDeclarationPropertiesFile = generatedPropertiesFileFor("gradle-api-declaration")
    
    val apiDeclaration by tasks.registering(WriteProperties::class) {
        property("includes", PublicApi.includes.joinToString(":"))
        property("excludes", PublicApi.excludes.joinToString(":"))
        destinationFile = apiDeclarationPropertiesFile
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 20 15:24:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/README.md

    To generate additional operators, extend the lists in this script. Note that
    category names correspond to generated source file names, and should be
    consistent with the original source files registering each operator. For example
    since `REGISTER_OP("MatMul")` appears in ***core/math_ops.cc***, the "MatMul"
    operator in the script should be in the "math" category, and it will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 17:21:01 UTC 2021
    - 993 bytes
    - Viewed (0)
  9. build-logic/jvm/src/main/kotlin/gradlebuild.api-parameter-names-index.gradle.kts

    import gradlebuild.kotlin.tasks.ParameterNamesIndex
    
    plugins {
        id("gradlebuild.module-identity")
        java
    }
    
    val main = sourceSets.main.get()
    val parameterNamesIndex by tasks.registering(ParameterNamesIndex::class) {
        sources.from(
            main.allJava.matching {
                include(PublicApi.includes)
                exclude(PublicApi.excludes)
            }
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 20 15:24:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    val generateTestKitPackageList by tasks.registering(PackageListGenerator::class) {
        classpath.from(sourceSets.main.map { it.runtimeClasspath })
        outputFile = layout.buildDirectory.file("runtime-api-info/test-kit-relocated.txt")
    }
    tasks.jar {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top