Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for attrTypeMap (0.24 sec)

  1. src/html/template/attr.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package template
    
    import (
    	"strings"
    )
    
    // attrTypeMap[n] describes the value of the given attribute.
    // If an attribute affects (or can mask) the encoding or interpretation of
    // other content, or affects the contents, idempotency, or credentials of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.cc

    }
    
    TF_AttrType TFE_OpGetAttrType(TFE_Op* op, const char* attr_name,
                                  unsigned char* is_list, TF_Status* status) {
      TF_AttrType ret = TF_ATTR_INT;
      const tensorflow::AttrTypeMap* attr_types_;
      bool is_function;
      status->status = tensorflow::AttrTypeMapForOp(
          tensorflow::unwrap(op)->Name().c_str(), &attr_types_, &is_function);
      if (!status->status.ok()) {
        return ret;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top