Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,527 for inst (0.22 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			length := 1
    			if i+1 < len(insts) && insts[i+1].Addr > inst.Addr {
    				// Extend to next instruction.
    				length = int(insts[i+1].Addr - inst.Addr)
    			}
    
    			// Get inlined-call-stack for address.
    			frames, err := r.obj.SourceLine(addr)
    			if err != nil {
    				// Construct a frame from disassembler output.
    				frames = []plugin.Frame{{Func: inst.Function, File: inst.File, Line: inst.Line}}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    }
    
    func (o *internalObjTool) Disasm(file string, start, end uint64, intelSyntax bool) ([]plugin.Inst, error) {
    	insts, err := o.ObjTool.Disasm(file, start, end, intelSyntax)
    	if err != nil {
    		return nil, err
    	}
    	var pluginInst []plugin.Inst
    	for _, inst := range insts {
    		pluginInst = append(pluginInst, plugin.Inst(inst))
    	}
    	return pluginInst, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectionUsingLenientConstructorSelectorTest.groovy

            HasSeveralParameters(String a, int b, String x, boolean d) {
                this("String a, int b, String x, boolean d")
            }
            HasSeveralParameters(String a, int b, int c, boolean d) {
                this("String a, int b, int c, boolean d")
            }
            HasSeveralParameters(String a, int b, boolean d) {
                this("String a, int b, boolean d")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/typexpr.go

    			if i, err := check.verify(x.Pos(), inst.TypeParams().list(), inst.TypeArgs().list(), check.context()); err != nil {
    				// best position for error reporting
    				pos := x.Pos()
    				if i < len(xlist) {
    					pos = syntax.StartPos(xlist[i])
    				}
    				check.softErrorf(pos, InvalidTypeArg, "%s", err)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

      // associated NodeDef is not updated.
      for (int i = 0, e = inst->getNumOperands(); i < e; ++i) {
        node_def->add_input();
      }
      if (auto attr = inst->getAttrOfType<mlir::StringAttr>("device")) {
        node_def->set_device(std::string(attr.getValue()));
      }
    
      // Add the node debug info.
      TF_RETURN_IF_ERROR(ConvertLocation(
          inst->getLoc(), name, node_def->mutable_experimental_debug_info()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/eval_util.cc

      // Builds TF operation and sets all the attributes.
      std::string node_name = "unnamed";
      if (auto attr = inst->getAttrOfType<mlir::StringAttr>("name")) {
        node_name = std::string(attr.getValue());
      }
      auto node_def_or = ConvertTFDialectOpToNodeDef(
          inst, node_name.c_str(), /*ignore_unregistered_attrs=*/true);
      RETURN_FAILURE_IF_ERROR(node_def_or.status());
      const auto& node_def = node_def_or.value();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 13 06:02:14 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/go/internal/gccgoimporter/gccgoinstallation_test.go

    	// This test relies on gccgo being around.
    	gpath := gccgoPath()
    	if gpath == "" {
    		t.Skip("This test needs gccgo")
    	}
    
    	var inst GccgoInstallation
    	err := inst.InitFromDriver(gpath)
    	if err != nil {
    		t.Fatal(err)
    	}
    	imp := inst.GetImporter(nil, nil)
    
    	// Ensure we don't regress the number of packages we can parse. First import
    	// all packages into the same map and then each individually.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 21 02:25:41 UTC 2021
    - 4K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/namedReference_userType.kt

    // LOOK_UP_FOR_ELEMENT_OF_TYPE: KtNameReferenceExpression
    class Test {
        fun box(t : Test?) {
            val inst = t is <expr>Test</expr>
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 15 07:06:41 UTC 2023
    - 146 bytes
    - Viewed (0)
  9. tests/integration/security/ecc_signature_algorithm/main_test.go

    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	inst istio.Instance
    	apps deployment.SingleNamespaceView
    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		// Needed as it requires an environmental variable
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&inst, setupConfig)).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 05 22:29:44 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

          continue;
    
        // If an op doesn't implement any of the hardware interface we skip it.
        // This can happen in cases like Flex when we have non TFLite ops.
        auto device_name = GetDeviceName(&inst);
    
        if (device_name.has_value()) {
          // Add per device costs if present.
          auto per_device_cost = GetPerDeviceCosts(hardware_map, &inst);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top