Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for representing (0.19 sec)

  1. src/reflect/value.go

    	}
    	if f&flagAddr == 0 {
    		panic("reflect: " + valueMethodName() + " using unaddressable value")
    	}
    }
    
    // Addr returns a pointer value representing the address of v.
    // It panics if [Value.CanAddr] returns false.
    // Addr is typically used to obtain a pointer to a struct field
    // or slice element in order to call a method that requires a
    // pointer receiver.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    class TFL_TensorOf<list<Type> allowedRuntimeTypes,
                       list<Type> allowedOpTypes = [AnyType]> :
      TensorOf<allowedOpTypes>, TFL_RuntimeType<TensorOf<allowedRuntimeTypes>> {
      // Set the summary equal to that representing the runtime types.
      let summary = TensorOf<allowedRuntimeTypes>.summary;
    }
    
    class TFL_TensorOfOrNone<list<Type> allowedRuntimeTypes, string description = "",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    The list is converted to a single large tensor that includes all list elements,
    with a new first dimension for the list index. List update operations are
    converted to operations that create a new tensor representing the list.
    
    In the current implementation, the resulting operations are statically shaped,
    which means it must be possible to infer a bound on the full shape of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      }
      return false;
    }
    
    class ConvertGatherOp : public OpConversionPattern<mhlo::GatherOp> {
     public:
      using OpConversionPattern::OpConversionPattern;
    
      // Helper params for representing the transpose params for the "canonicalized"
      // output to the real output.
      struct TransposeParams {
        std::vector<int64_t> permutation;
        // The following are the "canonicalized" output shape with offset dims.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    // row. In such a case, QueryRow returns a placeholder [*Row] value that
    // defers this error until a Scan.
    var ErrNoRows = errors.New("sql: no rows in result set")
    
    // DB is a database handle representing a pool of zero or more
    // underlying connections. It's safe for concurrent use by multiple
    // goroutines.
    //
    // The sql package creates and frees connections automatically; it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package demangle
    
    import (
    	"fmt"
    	"strings"
    )
    
    // AST is an abstract syntax tree representing a C++ declaration.
    // This is sufficient for the demangler but is by no means a general C++ AST.
    // This abstract syntax tree is only used for C++ symbols, not Rust symbols.
    type AST interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      std::vector<int64_t> new_shape(new_dims, 1);
      std::copy_backward(old_shape.begin(), old_shape.end(), new_shape.end());
      return new_shape;
    }
    
    // Helper method that given and 'current_index' representing
    // index in broadcasted tensor, get the index in the flat original tensor.
    // 'shape' is the original shape with padding to match result shape.
    int64_t GetElementIndex(const std::vector<int64_t>& shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //	type Replace struct {
    //		Old Module
    //		New Module
    //	}
    //
    //	type Retract struct {
    //		Low       string
    //		High      string
    //		Rationale string
    //	}
    //
    // Retract entries representing a single version (not an interval) will have
    // the "Low" and "High" fields set to the same value.
    //
    // Note that this only describes the go.mod file itself, not other modules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	})
    	ln := &oneConnListener{conn: conn}
    	go Serve(ln, handler)
    	<-conn.closec
    	if b.N != handled {
    		b.Errorf("b.N=%d but handled %d", b.N, handled)
    	}
    }
    
    // same as above, but representing the most simple possible request
    // and handler. Notably: the handler does not call rw.Header().
    func BenchmarkServerFakeConnWithKeepAliveLite(b *testing.B) {
    	b.ReportAllocs()
    
    	req := reqBytes(`GET / HTTP/1.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top