Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 123 for dictionary (0.35 sec)

  1. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

    // Default version number for native serialization.
    constexpr int64_t kDefaultVersion = 9;
    // Default platform for XlaCallModuleOp.
    constexpr StringRef kPlatformCpu = "CPU";
    // Name of `tf.XlaCallModule`'s dictionary attribute for keeping the
    // deserialized stablehlo module's attributes.
    constexpr StringRef kStablehloModuleAttrsAttrName = "_stablehlo_module_attrs";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    			// ok
    		default:
    			continue
    		}
    		// Skip things with no type, unless it's a dictionary
    		gt := d.ldr.SymGoType(idx)
    		if gt == 0 {
    			if t == sym.SRODATA {
    				if d.ldr.IsDict(idx) {
    					// This is a dictionary, make sure that all types referenced by this dictionary are reachable
    					relocs := d.ldr.Relocs(idx)
    					for i := 0; i < relocs.Count(); i++ {
    						reloc := relocs.At(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/ureader.go

    	}
    
    	// TODO(mdempsky): This is subtle, elaborate further.
    	//
    	// We have to save tparams outside of the closure, because
    	// typeParamNames() can be called multiple times with the same
    	// dictionary instance.
    	//
    	// Also, this needs to happen later to make sure SetUnderlying has
    	// been called.
    	//
    	// TODO(mdempsky): Is it safe to have a single "later" slice or do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/internal/dwarf/dwarf.go

    type Var struct {
    	Name          string
    	Tag           int // Either DW_TAG_variable or DW_TAG_formal_parameter
    	WithLoclist   bool
    	IsReturnValue bool
    	IsInlFormal   bool
    	DictIndex     uint16 // index of the dictionary entry describing the type of this variable
    	StackOffset   int32
    	// This package can't use the ssa package, so it can't mention ssa.FuncDebug,
    	// so indirect through a closure.
    	PutLocationList func(listSym, startPC Sym)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/convert.go

    	// Use the same code as e, _ = c.(T).
    	var rhs ir.Node
    	if n.TypeWord == nil || n.TypeWord.Op() == ir.OADDR && n.TypeWord.(*ir.AddrExpr).X.Op() == ir.OLINKSYMOFFSET {
    		// Fixed (not loaded from a dictionary) type.
    		ta := ir.NewTypeAssertExpr(base.Pos, c, toType)
    		ta.SetOp(ir.ODOTTYPE2)
    		// Allocate a descriptor for this conversion to pass to the runtime.
    		ta.Descriptor = makeTypeAssertDescriptor(toType, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    				// in length.
    				regexCost := uint64(math.Ceil(float64(regexSize) * common.RegexStringLengthCostFactor))
    				cost := strCost * regexCost
    				return &cost
    			}
    		}
    	case "format.named":
    		// Simply dictionary lookup
    		cost := uint64(1)
    		return &cost
    	case "sign", "asInteger", "isInteger", "asApproximateFloat", "isGreaterThan", "isLessThan", "compareTo", "add", "sub":
    		cost := uint64(1)
    		return &cost
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

          and outputs.
        tags: Collection of tags identifying the MetaGraphDef within the SavedModel
          to analyze.
        representative_dataset: An iterator that returns a dictionary of {input_key:
          input_value} or a mapping from signature keys to such iterators. When
          `signature_keys` contains more than one signature key,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    			if strings.HasPrefix(r.Sym.Name, "type:") {
    				// In case we're loading a type out of a dictionary, we need to record
    				// that the containing function might put that type in an interface.
    				// That information is currently recorded in relocations in the dictionary,
    				// but if we perform this load at compile time then the dictionary
    				// might be dead.
    				reflectdata.MarkTypeSymUsedInInterface(r.Sym, f.fe.Func().Linksym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            String dictionaryPath = System.getProperty("fess.dictionary.path", StringUtil.EMPTY);
            if (StringUtil.isNotBlank(dictionaryPath) && !dictionaryPath.endsWith("/")) {
                dictionaryPath = dictionaryPath + "/";
            }
            source = source.replaceAll(Pattern.quote("${fess.dictionary.path}"), dictionaryPath)//
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_joblog_delete_all_cancel = "{labels.joblog_delete_all_cancel}";
    
        /** The key of the message: Dictionary List */
        public static final String LABELS_dict_configuration = "{labels.dict_configuration}";
    
        /** The key of the message: Dictionary List */
        public static final String LABELS_dict_list_title = "{labels.dict_list_title}";
    
        /** The key of the message: Dictionaries */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
Back to top