Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InitMem (0.32 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    		//   v79 = Arg <*uint8> {args} : args[*uint8] (args[*uint8])
    		//   v80 = Arg <int> {args} [8] : args+8[int] (args+8[int])
    		//   ...
    		//   v1 = InitMem <mem>
    		//
    		// We can stop scanning the initial portion of the block when
    		// we either see the InitMem op (for entry blocks) or the
    		// first non-zero-width op (for other blocks).
    		for idx := 0; idx < len(b.Values); idx++ {
    			v := b.Values[idx]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/cache_test.go

    		t.Errorf("Unequal number of nodes in the cache and its snapshot. expected: %v, got: %v", len(cache.nodes), len(snapshot.Nodes))
    	}
    	for name, ni := range snapshot.Nodes {
    		nItem := cache.nodes[name]
    		if diff := cmp.Diff(nItem.info, ni, cmp.AllowUnexported(framework.NodeInfo{})); diff != "" {
    			t.Errorf("Unexpected node info (-want,+got):\n%s", diff)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top