Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for subTable (0.18 sec)

  1. src/cmd/go/alldocs.go

    //
    //	-exec xprog
    //	    Run the test binary using xprog. The behavior is the same as
    //	    in 'go run'. See 'go help run' for details.
    //
    //	-json
    //	    Convert test output to JSON suitable for automated processing.
    //	    See 'go doc test2json' for the encoding details.
    //
    //	-o file
    //	    Compile the test binary to the named file.
    //	    The test still runs (unless -c or -i is specified).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      }];
    
      let constructor = "TFTPU::CreateTPUResourceReadsWritesPartitioningPass()";
    }
    
    def VerifySuitableForExportPass : Pass<"tf-verify-for-export", "ModuleOp"> {
      let summary = "Verify module is suitable for export back to TF Graph";
      let description = [{
        Verifies whether all functions in module are of single tf_executor.graph and
        each tf_executor.island in tf_executor.graph only has a single op.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    // If not applicable or if not supported ok is false.
    func (ci *ColumnType) DecimalSize() (precision, scale int64, ok bool) {
    	return ci.precision, ci.scale, ci.hasPrecisionScale
    }
    
    // ScanType returns a Go type suitable for scanning into using [Rows.Scan].
    // If a driver does not support this property ScanType will return
    // the type of an empty interface.
    func (ci *ColumnType) ScanType() reflect.Type {
    	return ci.scanType
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // call runs for longer than its time limit, the handler responds with
    // a 503 Service Unavailable error and the given message in its body.
    // (If msg is empty, a suitable default message will be sent.)
    // After such a timeout, writes by h to its [ResponseWriter] will return
    // [ErrHandlerTimeout].
    //
    // TimeoutHandler supports the [Pusher] interface but does not support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Have multiple function bodies for the same computation. This allows a
        program compiler/interpreter to choose one of the available options to
        execute the program based on which one is most suitable for the target
        backend.
    
        input:  A list of input tensors whose types are T.
        output: A list of output tensors whose types are T.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	}
    	vs := v >> uint(s)
    	if vs<<uint(s) != v {
    		c.ctxt.Diag("odd offset: %d\n%v", v, p)
    	}
    	return vs
    }
    
    /*
     * if v contains a single 16-bit value aligned
     * on a 16-bit field, and thus suitable for movk/movn,
     * return the field index 0 to 3; otherwise return -1.
     */
    func movcon(v int64) int {
    	for s := 0; s < 64; s += 16 {
    		if (uint64(v) &^ (uint64(0xFFFF) << uint(s))) == 0 {
    			return s / 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    // its fixed operating system thread.
    // If there are no active LockOSThread calls, this is a no-op.
    //
    // Before calling UnlockOSThread, the caller must ensure that the OS
    // thread is suitable for running other goroutines. If the caller made
    // any permanent changes to the state of the thread that would affect
    // other goroutines, it should not call this function and thus leave
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top