Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for callsite (0.27 sec)

  1. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    func T_callsexit(x int) {
    	if x < 0 {
    		os.Exit(1)
    	}
    	os.Exit(2)
    }
    
    // funcflags.go T_exitinexpr 281 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[0],"ResultFlags":null}
    // callsite: funcflags.go:286:18|0 flagstr "CallSiteOnPanicPath" flagval 2 score 102 mask 1 maskstr "panicPathAdj"
    // <endcallsites>
    // <endfuncpreamble>
    func T_exitinexpr(x int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

     * There are many different ways to run a process in Groovy, and all are producing different byte code.
     * The class supports compiling Groovy code in both indy and old-school CallSite modes.
     */
    abstract class AbstractProcessInstrumentationInDynamicGroovyIntegrationTest extends AbstractProcessInstrumentationIntegrationTest implements DynamicGroovyPluginMixin {
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/internal/pgo/pprof.go

    		return emptyProfile(), nil // accept but ignore profile with no samples.
    	}
    
    	return &Profile{
    		TotalWeight:  totalWeight,
    		NamedEdgeMap: namedEdgeMap,
    	}, nil
    }
    
    // createNamedEdgeMap builds a map of callsite-callee edge weights from the
    // profile-graph.
    //
    // Caller should ignore the profile if totalWeight == 0.
    func createNamedEdgeMap(g *profile.Graph) (edgeMap NamedEdgeMap, totalWeight int64, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingClassTransform.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.transforms;
    
    import org.codehaus.groovy.runtime.ProcessGroovyMethods;
    import org.codehaus.groovy.runtime.callsite.CallSiteArray;
    import org.codehaus.groovy.vmplugin.v8.IndyInterface;
    import org.gradle.api.file.RelativePath;
    import org.gradle.internal.Pair;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

    import org.objectweb.asm.Label;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Type;
    import org.objectweb.asm.commons.CodeSizeEvaluator;
    
    import javax.annotation.Nullable;
    import java.lang.invoke.CallSite;
    import java.lang.invoke.LambdaMetafactory;
    import java.lang.invoke.MethodHandles;
    import java.lang.invoke.MethodType;
    import java.lang.invoke.SerializedLambda;
    import java.util.ArrayList;
    import java.util.Collections;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

          %0 = "tf.PartitionedCall"(%arg0, %cst) {_tfl_quant_trait = "fully_quantizable", config = "", config_proto = "", executor_type = "", f = @composite_fn_1} : (tensor<2x2xf32>, tensor<2x2xf32>) -> tensor<2x2xf32> loc(callsite("test@main"("MatMul") at "QuantizationUnit(\12\06MatMul\1a\07main)"))
          return %0 : tensor<2x2xf32>
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

            val originalDeclaration = originalForSubstitutionOverride ?: return null
            return originalDeclaration.takeIf { this.origin is FirDeclarationOrigin.SubstitutionOverride.CallSite }
        }
    
        /**
         * We want to unwrap a SUBSTITUTION_OVERRIDE wrapper if it doesn't affect the declaration's signature in any way. If the signature
         * is somehow changed, then we want to keep the wrapper.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/wasm/ssa.go

       (So they are not really a "return address", they are a "resume address".)
    
       All Go functions have the Wasm type (i32)->i32. The argument
       is the block ID and the return value is the exit immediately flag.
    
       Callsite:
        - write arguments to the Go stack (starting at SP+0)
        - push return address to Go stack (8 bytes)
        - write local SP to global SP
        - push 0 (type i32) to Wasm stack
        - issue Call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

    import javax.inject.Inject;
    import java.lang.annotation.Annotation;
    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.invoke.CallSite;
    import java.lang.invoke.LambdaMetafactory;
    import java.lang.invoke.MethodHandle;
    import java.lang.invoke.MethodHandles;
    import java.lang.invoke.MethodType;
    import java.lang.reflect.Constructor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. src/runtime/traceback_test.go

    //go:noinline
    func ttiSigpanic1() (res *ttiResult) {
    	defer func() {
    		res = ttiLeaf()
    		recover()
    	}()
    	ttiSigpanic2()
    	// without condition below the inliner might decide to de-prioritize
    	// the callsite above (since it would be on an "always leads to panic"
    	// path).
    	if alwaysTrue {
    		panic("did not panic")
    	}
    	return nil
    }
    func ttiSigpanic2() {
    	ttiSigpanic3()
    }
    func ttiSigpanic3() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
Back to top