Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 740 for iattr (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/func-attr.mlir

    Adrian Kuegel <******@****.***> 1648469008 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 725 bytes
    - Viewed (0)
  2. src/html/template/transition.go

    			attr = attrURL
    		case contentTypeCSS:
    			attr = attrStyle
    		case contentTypeJS:
    			attr = attrScript
    		case contentTypeSrcset:
    			attr = attrSrcset
    		}
    	}
    
    	if j == len(s) {
    		state = stateAttrName
    	} else {
    		state = stateAfterName
    	}
    	return context{state: state, element: c.element, attr: attr}, j
    }
    
    // tAttrName is the context transition function for stateAttrName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/func-attr-invalid.mlir

    A. Unique TensorFlower <******@****.***> 1651827499 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 06 09:05:45 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf-gradient-attr.mlir

    Yifan Jiang <******@****.***> 1684349180 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 18:52:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/encoding/xml/typeinfo.go

    			}
    		}
    
    		// Validate the flags used.
    		valid := true
    		switch mode := finfo.flags & fMode; mode {
    		case 0:
    			finfo.flags |= fElement
    		case fAttr, fCDATA, fCharData, fInnerXML, fComment, fAny, fAny | fAttr:
    			if f.Name == xmlName || tag != "" && mode != fAttr {
    				valid = false
    			}
    		default:
    			// This will also catch multiple modes in a single field.
    			valid = false
    		}
    		if finfo.flags&fMode == fAny {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/encoding/xml/read.go

    		// Recur to read element into slice.
    		if err := d.unmarshalAttr(val.Index(n), attr); err != nil {
    			val.SetLen(n)
    			return err
    		}
    		return nil
    	}
    
    	if val.Type() == attrType {
    		val.Set(reflect.ValueOf(attr))
    		return nil
    	}
    
    	return copyValue(val, []byte(attr.Value))
    }
    
    var (
    	attrType            = reflect.TypeFor[Attr]()
    	unmarshalerType     = reflect.TypeFor[Unmarshaler]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal.go

    func (p *printer) marshalAttr(start *StartElement, name Name, val reflect.Value) error {
    	if val.CanInterface() && val.Type().Implements(marshalerAttrType) {
    		attr, err := val.Interface().(MarshalerAttr).MarshalXMLAttr(name)
    		if err != nil {
    			return err
    		}
    		if attr.Name.Local != "" {
    			start.Attr = append(start.Attr, attr)
    		}
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/force_shared_name_for_resource_ops.pbtxt

      }
      attr {
        key: "shape"
        value {
          shape {
          }
        }
      }
      attr {
        key: "shared_name"
        value {
          s: ""
        }
      }
    }
    node {
      name: "variable_v2_node"
      op: "VariableV2"
      attr {
        key: "dtype"
        value {
          type: DT_INT64
        }
      }
      attr {
        key: "shape"
        value {
          shape {
          }
        }
      }
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  9. src/debug/dwarf/const.go

    	AttrHighpc         Attr = 0x12
    	AttrLanguage       Attr = 0x13
    	AttrDiscr          Attr = 0x15
    	AttrDiscrValue     Attr = 0x16
    	AttrVisibility     Attr = 0x17
    	AttrImport         Attr = 0x18
    	AttrStringLength   Attr = 0x19
    	AttrCommonRef      Attr = 0x1A
    	AttrCompDir        Attr = 0x1B
    	AttrConstValue     Attr = 0x1C
    	AttrContainingType Attr = 0x1D
    	AttrDefaultValue   Attr = 0x1E
    	AttrInline         Attr = 0x20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

              is_ref: true
            }
            attr {
              name: "shape"
              type: "shape"
            }
            attr {
              name: "dtype"
              type: "type"
            }
            attr {
              name: "container"
              type: "string"
              default_value {
                s: ""
              }
            }
            attr {
              name: "shared_name"
              type: "string"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
Back to top