Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 164 for instrument2 (0.48 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InstrumentedTest.groovy

            System.setProperty("prop", "value")
    
            when:
            def result = Instrumented.systemProperty("prop", "consumer")
    
            then:
            result == "value"
            1 * listener.systemPropertyQueried("prop", "value", "consumer")
            0 * listener._
    
            when:
            result = Instrumented.systemProperty("not-set", "consumer")
    
            then:
            result == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/FileInterceptorsDeclaration.java

            @CallerClassName String consumer
        ) {
            return Instrumented.fileListFiles(thisFile, consumer);
        }
    
        @InterceptCalls
        @InstanceMethod
        public static File[] intercept_listFiles(
            @Receiver File thisFile,
            FileFilter fileFilter,
            @CallerClassName String consumer
        ) {
            return Instrumented.fileListFiles(thisFile, fileFilter, consumer);
        }
    
        @InterceptCalls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutatorTest.groovy

        def "should cleanup all transforms-X folders except the ones with instrumented jars"() {
            given:
            def cachesDir = new File(gradleUserHome, "caches")
            createFile(new File(cachesDir, "transforms-1/first/transformed/file"))
            createFile(new File(cachesDir, "transforms-1/first/metadata.bin"))
            createFile(new File(cachesDir, "transforms-1/first/transformed/instrumented/file"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/groovy/consumer/build.gradle

        testImplementation project(':producer')
    }
    // end::test_dependency[]
    
    // tag::ask-for-instrumented-classes[]
    configurations {
        testRuntimeClasspath {
            attributes {
                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements, 'instrumented-jar'))
            }
        }
    }
    // end::ask-for-instrumented-classes[]
    
    // tag::compatibility-rule-use[]
    dependencies {
        attributesSchema {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top