Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 396 for instrumentation (0.6 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/InstrumentationResourceGenerator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.processor.codegen;
    
    import org.gradle.internal.instrumentation.model.CallInterceptionRequest;
    
    import java.io.OutputStream;
    import java.util.Collection;
    import java.util.List;
    
    public interface InstrumentationResourceGenerator {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/internal/fuzz/counters_unsupported.go

    // the instrumentation is OS specific, but only amd64 and arm64 are
    // supported in the runtime. See src/runtime/libfuzzer*.
    //
    // If you update this constraint, also update internal/platform.FuzzInstrumented.
    //
    //go:build !((darwin || linux || windows || freebsd) && (amd64 || arm64))
    
    package fuzz
    
    // TODO(#48504): re-enable on platforms where instrumentation works.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 17:10:57 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

             * A marker file put next to the instrumentation entry to indicate that this is part of instrumentation.
             * This is currently used just to not delete the folders for performance testing.
             */
            INSTRUMENTATION_CLASSPATH_MARKER(".gradle-instrumented-classpath.marker"),
            /**
             * A marker file put next to the instrumented entry to indicate that it is using agent instrumentation.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue15091.go

    // or (now, with the error caught earlier)
    //    Treating auto as if it were arg, func (*Html).xyzzy, node ...
    // caused by racewalker inserting instrumentation before an OAS where the Ninit
    // of the OAS defines part of its right-hand-side. (I.e., the race instrumentation
    // references a variable before it is defined.)
    func (options *Html) xyzzy(id string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 989 bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/InstrumentationCodeGenerator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.processor.codegen;
    
    import com.squareup.javapoet.TypeSpec;
    import org.gradle.internal.instrumentation.model.CallInterceptionRequest;
    
    import java.util.Collection;
    import java.util.List;
    
    public interface InstrumentationCodeGenerator {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. build-logic/uber-plugins/src/main/kotlin/gradlebuild.instrumented-project.gradle.kts

    }
    
    val libs = project.the<ExternalModulesExtension>()
    
    dependencies {
        api(project(":internal-instrumentation-api"))
        implementation(project(":base-asm"))
        compileOnly(libs.asm)
        compileOnly(libs.asmUtil)
        compileOnly(libs.asmTree)
        annotationProcessor(project(":internal-instrumentation-processor"))
        annotationProcessor(platform(project(":distributions-dependencies")))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:53:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentInitializer.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;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Initializes the instrumenting agent.
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedClosuresHelper.java

        }
    
        @SuppressWarnings("unused") // call sites generated by instrumentation in `CallInterceptionClosureInstrumentingClassVisitor`
        public static void enterInstrumentedClosure(InstrumentableClosure thisClosure) {
            INSTANCE.enterClosure(thisClosure);
        }
    
        @SuppressWarnings("unused") // call sites generated by instrumentation in `CallInterceptionClosureInstrumentingClassVisitor`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/api/CallInterceptionRequestReader.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.processor.modelreader.api;
    
    import org.gradle.internal.instrumentation.model.CallInterceptionRequest;
    
    import java.util.Collection;
    
    public interface CallInterceptionRequestReader<T> {
        Collection<Result> readRequest(T input);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultJvmBytecodeInterceptorFactorySet.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.intercept;
    
    import org.gradle.internal.classpath.ClassData;
    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter;
    import org.gradle.internal.instrumentation.api.jvmbytecode.JvmBytecodeCallInterceptor;
    import org.objectweb.asm.MethodVisitor;
    
    import java.util.List;
    import java.util.stream.Collectors;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top