Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 146 for instrumentation (0.29 sec)

  1. 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)
  2. 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)
  3. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 695 bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

     */
    package org.gradle.launcher
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.internal.instrumentation.agent.AgentUtils
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    
    /**
     * Verifies that Gradle doesn't pollute the system class loader.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. hack/unwanted-dependencies.json

          "github.com/spf13/viper": "refer to #102598",
          "github.com/xeipuuv/gojsonschema": "unmaintained",
          "go.mongodb.org/mongo-driver": "",
          "go.opencensus.io": "unmaintained, https://github.com/census-instrumentation/opencensus-go archive mode",
          "golang.org/x/exp": "This subrepository holds experimental and deprecated packages",
          "golang.org/x/lint": "unmaintained, archive mode",
          "google.golang.org/api": "cloud dependency",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DisabledAgentStatus.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.agent;
    
    class DisabledAgentStatus implements AgentStatus {
        @Override
        public boolean isAgentInstrumentationEnabled() {
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 817 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/VintageInjectedClasspathInstrumentationStrategy.kt

    class VintageInjectedClasspathInstrumentationStrategy : AbstractInjectedClasspathInstrumentationStrategy() {
        override fun whenThirdPartyAgentPresent(): CachedClasspathTransformer.StandardTransform {
            // For now, disable the instrumentation
            return CachedClasspathTransformer.StandardTransform.None
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/core-runtime/gradle-cli-main/build.gradle.kts

        manifestClasspath(project(":build-process-services"))
        manifestClasspath(project(":base-services"))
        manifestClasspath(project(":concurrent"))
    
        agentsClasspath(project(":instrumentation-agent"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

    import javax.annotation.Nullable;
    
    /**
     * A helper to handle transform errors in {@link InstrumentingClassLoader}.
     * The agent cannot abort the class loading by throwing an exception during instrumentation.
     * Instead, this class allows to record the exception and rethrow it after class loading is mostly done.
     * The suggested pattern is to override the {@link ClassLoader#findClass(String)}:
     * <pre>
     * <code>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ToBeReplacedByLazyProperty.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;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 09:58:15 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top