Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 237 for instrument2 (0.42 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ExternalDependencyInstrumentingArtifactTransform.java

    import java.io.File;
    
    import static org.gradle.api.internal.initialization.transform.utils.InstrumentationTransformUtils.getInputType;
    
    /**
     * Artifact transform that instruments external artifacts with Gradle instrumentation.
     */
    @DisableCachingByDefault(because = "Instrumented jars are too big to cache")
    public abstract class ExternalDependencyInstrumentingArtifactTransform extends BaseInstrumentingArtifactTransform {
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ProjectDependencyInstrumentingArtifactTransform.java

    import org.gradle.work.DisableCachingByDefault;
    
    import java.io.File;
    
    /**
     * Artifact transform that instruments project based artifacts with Gradle instrumentation.
     */
    @DisableCachingByDefault(because = "Instrumented jars are too big to cache.")
    public abstract class ProjectDependencyInstrumentingArtifactTransform extends BaseInstrumentingArtifactTransform {
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/internal/cov/covcmd/cmddefs.go

    // cmd/cover tool (during instrumentation) to be passed on to the
    // compiler when the instrumented code is compiled. The cmd/cover tool
    // creates a struct of this type, JSON-encodes it, and emits the
    // result to a file, which the Go command then passes to the compiler
    // when the instrumented package is built.
    type CoverFixupConfig struct {
    	// Name of the variable (created by cmd/cover) containing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

            then:
            gradleUserHomeOutputs("instrumented/instrumented-api-1.0.jar").size() == 2
            gradleUserHomeOutputs("instrumented/instrumented-impl-1.0.jar").size() == 2
        }
    
        @Requires(
            value = IntegTestPreconditions.NotConfigCached,
            reason = "Cc doesn't get invalidated when file dependency changes"
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

                return;
            }
    
            if (isAgentSupported()) {
                // When agent is supported, we output an instrumented jar and an original jar,
                // so we can then later reconstruct instrumented jars classpath and original jars classpath.
                // We add `instrumented-` prefix to the file since names for the same transform needs to be unique when querying results via ArtifactCollection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. cmd/os-instrumented.go

    Harshavardhana <******@****.***> 1707959378 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 15 01:09:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

            // The agent-based instrumentation doesn't load resources from the instrumented JAR, but from the original.
            // TODO(https://github.com/gradle/gradle/issues/18024) we really shouldn't instrument these "resource-looks-like-class" things.
    
            // We don't know the actual minimal supported version of the non-versioned class entries.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #         "fallback_tensor_conversion_host.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    #         "kernel_fallback_op_handler.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    #         "mnist.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    #         "runtime_fallback_op_handler.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. 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)
Back to top