Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,124 for func4 (0.06 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // addVersionFlag does nothing.
    func addVersionFlag() {
    	if flag.Lookup("V") == nil {
    		flag.Var(versionFlag{}, "V", "print version and exit")
    	}
    }
    
    // versionFlag minimally complies with the -V protocol required by "go vet".
    type versionFlag struct{}
    
    func (versionFlag) IsBoolFlag() bool { return true }
    func (versionFlag) Get() interface{} { return nil }
    func (versionFlag) String() string   { return "" }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/runtime/traceback_system_test.go

    }
    
    func child4() {
    	child5()
    }
    
    //go:noinline
    func child5() { // test trace through second of two call instructions
    	child6bad()
    	child6() // appears in stack trace
    }
    
    //go:noinline
    func child6bad() {
    }
    
    //go:noinline
    func child6() { // test trace through first of two call instructions
    	child7() // appears in stack trace
    	child7bad()
    }
    
    //go:noinline
    func child7bad() {
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/cmd/trace/testdata/go122.test

    	pc=5049499 func=41 file=42 line=124
    	pc=5048282 func=43 file=42 line=70
    	pc=5021687 func=44 file=45 line=154
    	pc=5057739 func=46 file=47 line=85
    	pc=5057380 func=48 file=47 line=75
    	pc=5057381 func=49 file=47 line=71
    	pc=4965884 func=50 file=51 line=651
    	pc=4964173 func=52 file=51 line=616
    	pc=4961811 func=53 file=51 line=517
    	pc=4960409 func=54 file=51 line=508
    	pc=4958646 func=55 file=51 line=434
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  4. src/net/http/clientserver_test.go

    func TestH12_RequestContentLength_Known_Zero(t *testing.T) {
    	h12requestContentLength(t, func() io.Reader { return nil }, 0)
    }
    
    func TestH12_RequestContentLength_Unknown(t *testing.T) {
    	h12requestContentLength(t, func() io.Reader { return struct{ io.Reader }{strings.NewReader("Stuff")} }, -1)
    }
    
    func h12requestContentLength(t *testing.T, bodyfn func() io.Reader, wantLen int64) {
    	h12Compare{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/inl_test.go

    	}
    }
    
    func collectInlCands(msgs string) map[string]struct{} {
    	rv := make(map[string]struct{})
    	lines := strings.Split(msgs, "\n")
    	re := regexp.MustCompile(`^\S+\s+can\s+inline\s+(\S+)`)
    	for _, line := range lines {
    		m := re.FindStringSubmatch(line)
    		if m != nil {
    			rv[m[1]] = struct{}{}
    		}
    	}
    	return rv
    }
    
    func TestIssue56044(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	clear(dst.Stack0[i:])
    }
    
    //go:linkname pprof_memProfileInternal
    func pprof_memProfileInternal(p []profilerecord.MemProfileRecord, inuseZero bool) (n int, ok bool) {
    	return memProfileInternal(len(p), inuseZero, func(r profilerecord.MemProfileRecord) {
    		p[0] = r
    		p = p[1:]
    	})
    }
    
    func iterate_memprof(fn func(*bucket, uintptr, *uintptr, uintptr, uintptr, uintptr)) {
    	lock(&profMemActiveLock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

      func.return %0 : tensor<i32>
    }
    }
    
    // CHECK:     func.func @simpleWhile(%arg0: tensor<i32>) -> tensor<i32> {
    // CHECK:       %0 = call @func_0_CPU_FLOAT(%arg0) {tac.device = "CPU", tac.inference_type = "FLOAT", tac.interface_name = "func_0"} : (tensor<i32>) -> tensor<i32>
    // CHECK:       return %0 : tensor<i32>
    // CHECK:     }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	fuzzer.NilChance(0)
    	fuzzer.Funcs(func(o *apidiscoveryv2.APIGroupDiscovery, c fuzz.Continue) {
    		c.FuzzNoCustom(o)
    
    		// The ResourceManager will just not serve the group if its versions
    		// list is empty
    		atLeastOne := apidiscoveryv2.APIVersionDiscovery{}
    		c.Fuzz(&atLeastOne)
    		o.Versions = append(o.Versions, atLeastOne)
    		sort.Slice(o.Versions[:], func(i, j int) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    }
    
    func mkPackageIdVar() string {
    	return *varVar + "P"
    }
    
    func mkMetaVar() string {
    	return *varVar + "M"
    }
    
    func mkPackageIdExpression() string {
    	ppath := pkgconfig.PkgPath
    	if hcid := coverage.HardCodedPkgID(ppath); hcid != -1 {
    		return fmt.Sprintf("uint32(%d)", uint32(hcid))
    	}
    	return mkPackageIdVar()
    }
    
    func (f *File) preFunc(fn ast.Node, fname string) {
    	f.fn.units = f.fn.units[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        llvm::StringRef name;
        mlir::func::FuncOp func;
      };
      llvm::SmallVector<NamedFunc, 8> named_funcs;
      llvm::SmallVector<mlir::func::FuncOp, 8> private_funcs;
      for (auto func : module.getOps<mlir::func::FuncOp>()) {
        auto exported_names = mlir::tf_saved_model::GetExportedNames(func);
        if (!exported_names.empty())
          named_funcs.push_back({exported_names.front(), func});
        else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top