Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 396 for instrumentation (0.17 sec)

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

    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter;
    import org.gradle.work.DisableCachingByDefault;
    
    import java.io.File;
    
    import static org.gradle.api.internal.initialization.transform.utils.InstrumentationTransformUtils.getInputType;
    
    /**
     * Artifact transform that instruments external artifacts with Gradle instrumentation.
     */
    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. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ParameterKind.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.api.annotations;
    
    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/types/InstrumentationTypeRegistry.java

    /**
     * Provides information about types that are visited during instrumentation.
     */
    public interface InstrumentationTypeRegistry {
    
        InstrumentationTypeRegistry EMPTY = new EmptyInstrumentationTypeRegistry();
    
        /**
         * Returns instrumented Gradle super types for a given type.
         *
         * Note: We currently return just types that uses {@link org.gradle.internal.instrumentation.api.annotations.InterceptInherited}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 15:43:35 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationTransformUtils.java

        public static final String MERGE_OUTPUT_DIR = "merge";
        public static final String TYPE_HIERARCHY_ANALYSIS_FILE_NAME = "instrumentation-hierarchy.bin";
        public static final String DEPENDENCY_ANALYSIS_FILE_NAME = "instrumentation-dependencies.bin";
    
        public static InstrumentationInputType getInputType(File input) {
            if (isInstrumentationMarkerFile(input)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:06:06 UTC 2024
    - 3.1K bytes
    - Viewed (1)
  5. src/cmd/cover/doc.go

    annotations to track which parts of each function are executed (this
    is referred to "instrumentation"). Cover can operate in "legacy mode"
    on a single Go source file at a time, or when invoked by the Go tool
    it will process all the source files in a single package at a time
    (package-scope instrumentation is enabled via "-pkgcfg" option).
    
    When generated instrumented code, the cover tool computes approximate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/distributions-core/build.gradle.kts

    }
    
    description = "The collector project for the 'core' portion of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(project(":plugin-use")) {
            because("This is a core extension module (see DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES)")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/InstrumentationCodeGenTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation
    
    import com.google.testing.compile.Compilation
    import com.google.testing.compile.JavaFileObjects
    import org.gradle.api.JavaVersion
    import org.gradle.internal.instrumentation.processor.ConfigurationCacheInstrumentationProcessor
    import org.gradle.internal.jvm.Jvm
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.h

    // used. The report file will be saved at the `file_path`. The report file
    // contains textproto of `QuantizationResults`. `file_path`'s base directories
    // should exist (this pass instrumentation will not `mkdir` them).
    //
    // See `QuantizationReport` for further details on the quantization report.
    class SaveQuantizationReportInstrumentation : public PassInstrumentation {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/extensions/InstrumentationMetadataExtension.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.instrumentation.extensions
    
    import gradlebuild.basics.classanalysis.Attributes
    import gradlebuild.instrumentation.transforms.InstrumentationMetadataTransform.Companion.INSTRUMENTATION_METADATA
    import org.gradle.api.artifacts.Configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 15:19:52 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ProjectDependencyInstrumentingArtifactTransform.java

    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry;
    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter;
    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.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top