Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 244 for reregistering (0.19 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginAccessorsIntegrationTest.kt

                    `my-plugin`
                }
                """
            )
    
            build("clean")
    
            build("clean", "--rerun-tasks")
        }
    
        @Test
        fun `accessors are available after registering plugin`() {
            withSettings(
                """
                $defaultSettingsScript
    
                include("consumer", "producer")
                """
            )
    
            withBuildScript(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/copy/kotlin/build.gradle.kts

        }
    }
    
    val myReportTask by tasks.registering(MyReportTask::class) {
        outputFile = layout.buildDirectory.file("reports/my-report.pdf")
    }
    
    abstract class MyArchiveTask : DefaultTask() {
        @get:InputDirectory
        abstract val dirToArchive: DirectoryProperty
    }
    
    val archiveReportsTask by tasks.registering(MyArchiveTask::class) {
        dirToArchive = layout.buildDirectory.dir("toArchive")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. src/runtime/cgo/sigaction.go

    // any sanitizer interceptors. This supports using the sanitizers
    // with Go programs. The thread and memory sanitizers only apply to
    // C/C++ code; this permits that code to see the Go runtime's existing signal
    // handlers when registering new signal handlers for the process.
    
    //go:cgo_import_static x_cgo_sigaction
    //go:linkname x_cgo_sigaction x_cgo_sigaction
    //go:linkname _cgo_sigaction _cgo_sigaction
    var x_cgo_sigaction byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 877 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/test-suite-configure-type/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    version = "1.0.2"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-type[]
    testing {
        suites {
            val secondaryTest by registering(JvmTestSuite::class) {
                testType = TestSuiteType.INTEGRATION_TEST // <1>
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 939 bytes
    - Viewed (0)
  5. platforms/ide/problems/src/main/java/org/gradle/problems/internal/services/ProblemsServices.java

    import org.gradle.internal.service.scopes.AbstractGradleModuleServices;
    
    /**
     * Service registration entry point for the Problems API.
     * <p>
     * This class is responsible registering all service providers for the Problems API.
     * See the {@code META-INF/services} directory to find the respective metadata file triggering the DI framework to load this class.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/internal/plugins/software/RegistersSoftwareTypes.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Marks a Settings plugin as registering one or more software types.
     *
     * @since 8.9
     */
    @Incubating
    @Target({ElementType.TYPE})
    @Retention(RetentionPolicy.RUNTIME)
    public @interface RegistersSoftwareTypes {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/runtime/testdata/testwinlib/main.go

    //}
    import "C"
    
    // CallMeBack call backs C code.
    //
    //export CallMeBack
    func CallMeBack(callback C.callmeBackFunc) {
    	C.bridgeCallback(callback)
    }
    
    // Dummy is called by the C code before registering the exception/continue handlers simulating a debugger.
    // This makes sure that the Go runtime's lastcontinuehandler is reached before the C continue handler and thus,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 925 bytes
    - Viewed (0)
  8. tensorflow/c/kernels/bitcast_op.cc

                                            &BitcastOp_Delete);
        TF_RegisterKernelBuilder("BitcastOp", builder, status);
        CHECK_EQ(TF_OK, TF_GetCode(status))
            << "Error while registering bitcast kernel";
      }
    
    #if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
      {
        auto* builder = TF_NewKernelBuilder("Bitcast", tensorflow::DEVICE_GPU,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 31 03:28:11 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  9. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-extensions.gradle.kts

    import gradlebuild.kotlindsl.generator.tasks.GenerateKotlinDslPluginsExtensions
    
    plugins {
        java
    }
    
    val generatedSourcesDir = layout.buildDirectory.dir("generated-sources/kotlin")
    
    val generateSources by tasks.registering(GenerateKotlinDslPluginsExtensions::class) {
        outputDir = generatedSourcesDir
        kotlinDslPluginsVersion = project.version
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 13:36:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies-project/kotlin/build.gradle.kts

    dependencies {
        api("com.google.guava:guava:30.1.1-jre") // <1>
        implementation("com.fasterxml.jackson.core:jackson-databind:2.13.3") // <2>
    }
    
    testing {
        suites {
            val integrationTest by registering(JvmTestSuite::class) {
                dependencies {
                    implementation(project()) // <3>
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top