Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for unstructured (0.59 sec)

  1. src/runtime/malloc.go

    // series of arena frames. The arena map (mheap_.arenas) maps from
    // arena frame number to *heapArena, or nil for parts of the address
    // space not backed by the Go heap. The arena map is structured as a
    // two-level array consisting of a "L1" arena map and many "L2" arena
    // maps; however, since arenas are large, on many architectures, the
    // arena map consists of a single, large L2 map.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

               ["getMutableSuccessorOperands"]>,
          ]> {
      let summary = "Yield operation";
    
      let description = [{
        The "yield" operation represents a return operation within the conditional
        and body of structured control flow (e.g., if and while). The operation
        takes a variable number of operands and produces no results. The number and
        types of inputs must match the signature of the operation that contains the
        region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. src/os/os_test.go

    		t.Fatal(err)
    	}
    }
    
    func TestReaddirStatFailures(t *testing.T) {
    	switch runtime.GOOS {
    	case "windows", "plan9":
    		// Windows and Plan 9 already do this correctly,
    		// but are structured with different syscalls such
    		// that they don't use Lstat, so the hook below for
    		// testing it wouldn't work.
    		t.Skipf("skipping test on %v", runtime.GOOS)
    	}
    
    	var xerr error // error to return for x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top