Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 396 for instrumentation (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/registration/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A package that contains registration logic for build script classpath instrumentation.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 20:10:38 UTC 2024
    - 813 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_var_init_order.txt

    # This test verifies that issue 56293 has been fixed, and that the
    # insertion of coverage instrumentation doesn't perturb package
    # initialization order.
    
    [short] skip
    
    # Skip if new coverage is turned off.
    [!GOEXPERIMENT:coverageredesign] skip
    
    go test -cover example
    
    -- go.mod --
    module example
    
    go 1.20
    
    -- m.go --
    
    package main
    
    import (
    	"flag"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 18:14:15 UTC 2022
    - 784 bytes
    - Viewed (0)
  3. platforms/core-runtime/instrumentation-declarations/src/main/java/org/gradle/internal/instrumentation/property/upgrades/package-info.java

     * limitations under the License.
     */
    
    /**
     * Contains registry for classes with property upgrades.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:55:04 UTC 2023
    - 773 bytes
    - Viewed (0)
  4. subprojects/distributions-full/build.gradle.kts

    }
    
    description = "The collector project for the entirety of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-publishing")))
        pluginsRuntimeOnly(platform(project(":distributions-jvm")))
        pluginsRuntimeOnly(platform(project(":distributions-native")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    import gradlebuild.instrumentation.extensions.InstrumentationMetadataExtension
    import gradlebuild.instrumentation.extensions.InstrumentationMetadataExtension.Companion.INSTRUMENTED_METADATA_EXTENSION
    import gradlebuild.instrumentation.extensions.InstrumentationMetadataExtension.Companion.INSTRUMENTED_SUPER_TYPES_MERGE_TASK
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/instrumentation-agent-services/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "Controls for the instrumentation agent potentially applied to the process"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    
        implementation(projects.baseServices)
        implementation(projects.functional)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. pkg/monitoring/doc.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package monitoring provides a common instrumentation library for Istio components.
    // Use of this library enables collateral generation for collected metrics, as well as
    // a consistent developer experience across Istio codebases.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 844 bytes
    - Viewed (0)
  8. platforms/native/distributions-native/build.gradle.kts

    }
    
    description = "The collector project for the 'native' portion of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-jvm"))) {
            because("the project dependency 'toolingNative -> ide' currently links this to the JVM ecosystem")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 825 bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/types/package-info.java

     */
    
    /**
     * Package with types of interceptors. Currently, we support bytecode upgrades or for configuration cache interceptors.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 13:39:36 UTC 2023
    - 827 bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/InterceptGroovyCalls.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.api.annotations;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Retention(RetentionPolicy.CLASS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 977 bytes
    - Viewed (0)
Back to top