Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for fmtStr (0.18 sec)

  1. src/encoding/xml/read.go

    				finfo := &tinfo.fields[i]
    				switch finfo.flags & fMode {
    				case fAttr:
    					strv := finfo.value(sv, initNilPointers)
    					if a.Name.Local == finfo.name && (finfo.xmlns == "" || finfo.xmlns == a.Name.Space) {
    						if err := d.unmarshalAttr(strv, a); err != nil {
    							return err
    						}
    						handled = true
    					}
    
    				case fAny | fAttr:
    					if any == -1 {
    						any = i
    					}
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal.go

    		}
    		if name == "" {
    			return &UnsupportedTypeError{typ}
    		}
    		start.Name.Local = name
    	}
    
    	// Attributes
    	for i := range tinfo.fields {
    		finfo := &tinfo.fields[i]
    		if finfo.flags&fAttr == 0 {
    			continue
    		}
    		fv := finfo.value(val, dontInitNilPointers)
    
    		if finfo.flags&fOmitEmpty != 0 && (!fv.IsValid() || isEmptyValue(fv)) {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                           << func_arg_count;
      }
    
      return success();
    }
    
    void LegacyCallOp::setCalleeFromCallable(mlir::CallInterfaceCallable callee) {
      // Direct call.
      if (SymbolRefAttr fAttr = getFAttr()) {
        SymbolRefAttr calleeAttr = callee.get<SymbolRefAttr>();
        return setFAttr(cast<FlatSymbolRefAttr>(calleeAttr));
      }
      // Indirect call, callee Value is the first operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    }
    
    template <typename CallOpClass>
    static void SetPartitionCalleeFromCallable(CallOpClass op,
                                               mlir::CallInterfaceCallable callee) {
      // Direct call.
      if (SymbolRefAttr fAttr = op.getFAttr()) {
        SymbolRefAttr calleeAttr = callee.get<SymbolRefAttr>();
        return op.setFAttr(cast<FlatSymbolRefAttr>(calleeAttr));
      }
      // Indirect call, callee Value is the first operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top