Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 164 for instrument2 (0.54 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/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)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/kotlin/consumer/build.gradle.kts

    }
    // end::test_dependency[]
    
    // tag::ask-for-instrumented-classes[]
    configurations {
        testRuntimeClasspath {
            attributes {
                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements::class.java, "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)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/kotlin/consumer/build.gradle.kts

    }
    // end::test_dependency[]
    
    // tag::ask-for-instrumented-classes[]
    configurations {
        testRuntimeClasspath {
            attributes {
                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements::class.java, "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)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsTracker.java

        /**
         * Registers the current call in the instrumented calls stack.
         * @return an entry point call site token that must later be passed to {@link InstrumentedGroovyCallsTracker#leaveCall}
         */
        EntryPointCallSite enterCall(String callerClassName, String callableName, CallKind callKind);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/KotlinStdlibFileInterceptors.java

            @CallerClassName String consumer
        ) {
            Instrumented.fileOpened(self, consumer);
            return FilesKt.readBytes(self);
        }
    
        @InterceptCalls
        @StaticMethod(ofClass = FilesKt.class)
        public static void intercept_forEachBlock(
            File self,
            Function2<?, ?, ?> action,
            @CallerClassName String consumer
        ) {
            Instrumented.fileOpened(self, consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/instrumentation-agent/src/main/java/org/gradle/instrumentation/agent/Agent.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.instrumentation.agent;
    
    import java.lang.instrument.ClassFileTransformer;
    import java.lang.instrument.Instrumentation;
    
    /**
     * An entry point for the on-the-fly bytecode instrumentation agent.
     */
    public class Agent {
        private static volatile Instrumentation instrumentation;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/tasks/InstrumentedSuperTypesMergeTask.kt

            val superTypes = mergeSuperTypes()
            // Keep only instrumented super types as we don't need to others for instrumentation
            val onlyInstrumentedSuperTypes = keepOnlyInstrumentedSuperTypes(superTypes, instrumentedClasses)
            writeSuperTypes(onlyInstrumentedSuperTypes)
        }
    
        /**
         * Finds all instrumented classes from `instrumented-classes.txt` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

     * 3. A properties file with instrumented class dependencies in a file.<br><br>
     *
     * File with instrumented class dependencies is a properties file like:<br>
     * [class name 1]=[instrumented super type 1],[instrumented super type 2],...<br>
     * [class name 2]=[instrumented super type 1],[instrumented super type 2],...<br>
     * ...
     */
    @DisableCachingByDefault(because = "Not worth caching.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/FileInputStreamInterceptorsDeclaration.java

            File file,
            @CallerClassName String consumer
        ) {
            Instrumented.fileOpened(file, consumer);
        }
    
        @InterceptCalls
        @AfterConstructor
        public static void interceptFileInputStreamConstructor(
            @Receiver FileInputStream receiver,
            String path,
            @CallerClassName String consumer
        ) {
            Instrumented.fileOpened(path, consumer);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/KotlinFileExtensionsInterceptorsDeclaration.java

            Charset charset,
            @KotlinDefaultMask int mask,
            @CallerClassName String consumer
        ) throws Throwable {
            return mask != 0 ?
                Instrumented.kotlinIoFilesKtReadTextDefault(thisFile, charset, mask, null, consumer) :
                Instrumented.kotlinIoFilesKtReadText(thisFile, charset, consumer);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top