Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for instrument (0.29 sec)

  1. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    We have different pipelines since project dependencies are only instrumented, while external dependencies are instrumented and upgraded.
    
    ```mermaid
    flowchart LR
        classpath(Plugins classpath)
        instrumentAndUpgrade{{"Instrument and upgrade"}}
        instrumentOnly{{"Instrument only"}}
        instrumentedAndUpgradedClasspath(Plugins classpath*)
        externalJar1(External jar1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            }
            return result
        }
    
        String instrument(String idExpr) {
            return """println("script=" + $idExpr + "=" + getClass().name + "," + getClass().classLoader.getURLs().collect { new File(it.toURI()) })"""
        }
    
        String simpleBuild(String content = '') {
            """
                ${content}
                ${instrument("project.path")}
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

            then:
            gradleUserHomeOutputs("instrumented/instrumented-api-1.0.jar").size() == 2
            gradleUserHomeOutputs("instrumented/instrumented-impl-1.0.jar").size() == 2
        }
    
        @Requires(
            value = IntegTestPreconditions.NotConfigCached,
            reason = "Cc doesn't get invalidated when file dependency changes"
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

            def builder = artifactBuilder()
            builder.sourceFile("TestAgent.java") << """
                public class TestAgent {
                    public static void premain(String p1, java.lang.instrument.Instrumentation p2) {
                    }
                }
            """
            builder.manifestAttributes("Premain-Class": "TestAgent")
            def agentJar = file("agent.jar")
            builder.buildJar(agentJar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    class ProcessInstrumentationInStaticGroovyIntegrationTest extends AbstractProcessInstrumentationIntegrationTest {
         def "#title is intercepted in static groovy build script"(VarInitializer varInitializer) {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

    import org.gradle.profiler.gradle.GradleScenarioDefinition;
    import org.gradle.profiler.gradle.GradleScenarioInvoker;
    import org.gradle.profiler.gradle.RunTasksAction;
    import org.gradle.profiler.instrument.PidInstrumentation;
    import org.gradle.profiler.result.BuildInvocationResult;
    import org.gradle.profiler.studio.invoker.StudioGradleScenarioDefinition;
    import org.gradle.profiler.studio.invoker.StudioGradleScenarioInvoker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. src/syscall/exec_linux.go

    // they might have been locked at the time of the fork. This means
    // no rescheduling, no malloc calls, and no new stack segments.
    // For the same reason compiler does not race instrument it.
    // The calls to RawSyscall are okay because they are assembly
    // functions that do not grow the stack.
    //
    //go:norace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/assign.go

    		ncopy = mkcall1(fn, types.Types[types.TINT], &nodes, reflectdata.AppendElemRType(base.Pos, n), ptr1, len1, ptr2, len2)
    	} else if base.Flag.Cfg.Instrumenting && !base.Flag.CompilingRuntime {
    		// rely on runtime to instrument:
    		//  copy(s[idx:], l2)
    		// l2 can be a slice or string.
    		slice := ir.NewSliceExpr(base.Pos, ir.OSLICE, s, idx, nil, nil)
    		slice.SetType(s.Type())
    		slice.SetBounded(true)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. docs/en/data/external_links.yml

    https://hackernoon.com/explore-how-to-effectively-use-jwt-with-fastapi title: Explore How to Effectively Use JWT With FastAPI - author: Nicoló Lino author_link: https://www.nlino.com link: https://github.com/softwarebloat/python-tracing-demo title: Instrument a FastAPI service adding tracing with OpenTelemetry and send/show traces in Grafana Tempo - author: Mikhail Rozhkov, Elena Samuylova author_link: https://www.linkedin.com/in/mnrozhkov/ link: https://www.evidentlyai.com/blog/fastapi-tutorial title:...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/test.go

    			if cfg.Experiment.CoverageRedesign {
    				// Here ptest needs to inherit the proper coverage mode (since
    				// it contains p's Go files), whereas pmain contains only
    				// test harness code (don't want to instrument it, and
    				// we don't want coverage hooks in the pkg init).
    				ptest.Internal.Cover.Mode = p.Internal.Cover.Mode
    				pmain.Internal.Cover.Mode = "testmain"
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top