Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for callsite (0.67 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

         *
         * @param originalCallSite the CallSite to decorate
         * @return the new CallSite capable of intercepting calls or the original CallSite if interception not neccessary.
         */
        @Override
        public CallSite maybeDecorateGroovyCallSite(CallSite originalCallSite) {
            if (shouldDecorate(originalCallSite)) {
                return new DecoratingCallSite(originalCallSite);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/testdata/props/acrosscall.go

    // callsite: acrosscall.go:58:9|0 flagstr "" flagval 0 score 8 mask 0 maskstr ""
    // <endcallsites>
    // <endfuncpreamble>
    func T_feeds_if_via_call(x int) {
    	feedsif(x)
    }
    
    // acrosscall.go T_feeds_if_via_call_conditional 69 0 1
    // ParamFlags
    //   0 ParamMayFeedIfOrSwitch
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[64],"ResultFlags":null}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallSiteDecorator.java

    import org.codehaus.groovy.runtime.callsite.CallSite;
    import org.gradle.api.NonNullApi;
    
    import java.lang.invoke.MethodHandles;
    
    /**
     * A handler for Groovy call sites, including Indy ones, which is used to replace the call sites of some calls at runtime,
     * in order to alter their behavior.
     */
    @NonNullApi
    public interface CallSiteDecorator {
        CallSite maybeDecorateGroovyCallSite(CallSite originalCallSite);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 27 13:58:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    //   1 ParamNoInfo
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[96,0],"ResultFlags":null}
    // callsite: calls.go:103:9|0 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:112:9|1 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:115:9|2 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:119:12|3 flagstr "CallSiteOnPanicPath" flagval 2 score 102 mask 1 maskstr "panicPathAdj"
    // <endcallsites>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_quantization_unit_loc.mlir

      %2 = "tf.Cast"(%1) {Truncate = false} : (tensor<1x3x2x2xbf16>) -> tensor<1x3x2x2xf32>
      %3 = "tf.IdentityN"(%2) {device = ""} : (tensor<1x3x2x2xf32>) -> tensor<1x3x2x2xf32>
      return %3 : tensor<1x3x2x2xf32>
    // CHECK: tf.Conv2D
    // CHECK-SAME: loc(callsite("Model/conv2d@conv2d_with_callsite_loc"("Conv2D") at "QuantizationUnit({{.*}})"))
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 02:39:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptionFilteringTest.groovy

            "bytecode upgrade" | "Java"                     | { doTestBytecodeUpgrade(it) } | false          | null
    
            "instrumentation"  | "Groovy callsite"          | { it.testInstrumentation() }  | false          | "testInstrumentation()"
            "bytecode upgrade" | "Groovy callsite"          | { it.testBytecodeUpgrade() }  | false          | null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    // {"Flags":0,"ParamFlags":[0],"ResultFlags":null}
    // callsite: returns2.go:42:18|0 flagstr "" flagval 0 score -51 mask 8200 maskstr "passConstToIfAdj|returnFeedsInlinableFuncToIndCallAdj"
    // callsite: returns2.go:44:20|1 flagstr "" flagval 0 score -23 mask 8192 maskstr "returnFeedsInlinableFuncToIndCallAdj"
    // <endcallsites>
    // <endfuncpreamble>
    func T_returned_inlinable_func_feeds_indirect_call(q int) {
    	f := returnsFunc(10)
    	f(q)
    	f2 := returnsFunc2()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tests/import_quant_stats.mlir

      %0:2 = "tfl.split"(%cst, %arg0) {num_splits = 2 : i32} : (tensor<i32>, tensor<4xf32>) -> (tensor<2xf32>, tensor<2xf32>)
        loc(fused["skip1", "skip2.cc":10:8, callsite("op" at "skip3.cc":10:8)])
      func.return %0#0, %0#1 : tensor<2xf32>, tensor<2xf32>
    
    // CHECK-NEXT: "tfl.split"
    // CHECK-NEXT: return
    }
    
    // CHECK-LABEL: import_stats_name
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/BasicCallInterceptionTest.groovy

            "no argument"           | "Groovy callsite"         | { it.test() }                             | false          | "test()"
            "one argument"          | "Groovy callsite"         | { it.test(it) }                           | false          | "test(InterceptorTestReceiver)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.java

    import org.codehaus.groovy.runtime.callsite.CallSite;
    
    import java.lang.invoke.MethodHandle;
    import java.lang.invoke.MethodHandles;
    import java.util.Set;
    
    /**
     * Intercepts method and constructor calls as well as property reads in dynamic Groovy bytecode.
     * <p>
     * The interceptor serves as a factory for decorated Groovy {@link CallSite} instances.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top