Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 159 for instrument (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInKotlinIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    class ProcessInstrumentationInKotlinIntegrationTest extends AbstractProcessInstrumentationIntegrationTest {
        def "#title is intercepted in kotlin build script"(VarInitializer varInitializer) {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInJavaIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    class ProcessInstrumentationInJavaIntegrationTest extends AbstractProcessInstrumentationIntegrationTest {
        def "#title is intercepted in java build code"(VarInitializer varInitializer) {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

         * @param cause the original exception
         */
        public void classLoadingError(@Nullable String className, Throwable cause) {
            ClassNotFoundException newError = new ClassNotFoundException(
                "Failed to instrument class " + className + " in " + classLoaderName, cause);
            Throwable prevError = lastError.get();
            if (prevError == null) {
                lastError.set(newError);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformReplacerTest.groovy

            then:
            def e = thrown(GradleException)
            e.message.contains("cannot be fully instrumented for Java ${JavaVersion.current().majorVersion}")
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "fails loading if transformed multi-release jar does not instrument current JVM"() {
            given:
            def original = jar(testDir.file("original.jar")) {
                manifest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    import org.gradle.internal.cc.impl.AbstractConfigurationCacheIntegrationTest
    import org.gradle.process.ShellScript
    
    /**
     * Base class for all external process invocation instrumentation tests.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/cmd/cover/cfg_test.go

    		{
    			mode: "regonly",
    			gran: "perblock",
    		},
    	}
    
    	var incfg string
    	apkgfiles := []string{filepath.Join(tpath, "a", "a.go")}
    	for _, scenario := range scenarios {
    		// Instrument package "a", producing a set of instrumented output
    		// files and an 'output config' file to pass on to the compiler.
    		ppath := "cfg/a"
    		pname := "a"
    		mode := scenario.mode
    		gran := scenario.gran
    		tag := mode + "_" + gran
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/syscall/exec_freebsd.go

    // they might have been locked at the time of the fork. This means
    // no rescheduling, no malloc calls, and no new stack segments.
    // For the same reason compiler does not race instrument it.
    // The calls to RawSyscall are okay because they are assembly
    // functions that do not grow the stack.
    //
    //go:norace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. src/syscall/exec_bsd.go

    // they might have been locked at the time of the fork. This means
    // no rescheduling, no malloc calls, and no new stack segments.
    // For the same reason compiler does not race instrument it.
    // The calls to RawSyscall are okay because they are assembly
    // functions that do not grow the stack.
    //
    //go:norace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/syscall/exec_libc2.go

    // they might have been locked at the time of the fork. This means
    // no rescheduling, no malloc calls, and no new stack segments.
    // For the same reason compiler does not race instrument it.
    // The calls to rawSyscall are okay because they are assembly
    // functions that do not grow the stack.
    //
    //go:norace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. build-logic/uber-plugins/src/main/kotlin/gradlebuild.instrumented-project.gradle.kts

        annotationProcessor(platform(project(":distributions-dependencies")))
    }
    
    tasks.withType<JavaCompile>().configureEach {
        options.compilerArgs.add("-Aorg.gradle.annotation.processing.instrumented.project=${project.name}")
    }
    
    strictCompile {
        ignoreAnnotationProcessing() // Without this, javac will complain about unclaimed annotations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:53:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top