Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for predefined (0.15 sec)

  1. src/text/template/doc.go

    During execution functions are found in two function maps: first in the
    template, then in the global function map. By default, no functions are defined
    in the template but the Funcs method can be used to add them.
    
    Predefined global functions are named as follows.
    
    	and
    		Returns the boolean AND of its arguments by returning the
    		first empty argument or the last argument. That is,
    		"and x y" behaves as "if x then y else x."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. src/internal/zstd/block.go

    	seqMatch
    )
    
    // seqCodeInfoData is the information needed to set up seqTables and
    // seqTableBits for a particular kind of sequence code.
    type seqCodeInfoData struct {
    	predefTable     []fseBaselineEntry // predefined FSE
    	predefTableBits int                // number of bits in predefTable
    	maxSym          int                // max symbol value in FSE
    	maxBits         int                // max bits for FSE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	return atomic.SwapUint64(&p.reads, 0)
    }
    
    // reproducingTransformer is a custom test-only transformer used purely
    // for testing consistency.
    // It allows for creating predefined objects on TransformFromStorage operations,
    // which allows for precise in time injection of new objects in the middle of
    // read operations.
    type reproducingTransformer struct {
    	wrapped value.Transformer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/time/example_test.go

    	if err != nil { // Always check errors even if they should not happen.
    		panic(err)
    	}
    
    	// time.Time's Stringer method is useful without any format.
    	fmt.Println("default format:", t)
    
    	// Predefined constants in the package implement common layouts.
    	fmt.Println("Unix format:", t.Format(time.UnixDate))
    
    	// The time zone attached to the time value affects its output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. src/encoding/gob/doc.go

    amortizing the cost of compilation.
    
    # Basics
    
    A stream of gobs is self-describing. Each data item in the stream is preceded by
    a specification of its type, expressed in terms of a small set of predefined
    types. Pointers are not transmitted, but the things they point to are
    transmitted; that is, the values are flattened. Nil pointers are not permitted,
    as they have no value. Recursive types work fine, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

    constexpr absl::string_view kFlexOpNamePrefix = "Flex";
    // Don't fallback to Flex op if this attribute is set. This attribute is
    // transient and is only used inside this pass. First, the pass looks for
    // predefined patterns and set this attribute to ops in the patterns. Then,
    // when parsing the function, if find ops with this attribute, the pass
    // remove the attribute and skip further processing on those ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

    // graph and pass them as arguments to the TPU graph (via `TPUPartitionedCall`).
    // If this happens, the XLA compiler cannot recognize such arguments as
    // constants and may result in an error.
    //
    // A set of predefined ops and operand indices is used to determine whether an
    // operand is a target for constant duplication.
    class DuplicateShapeDeterminingConstantsPass
        : public PassWrapper<DuplicateShapeDeterminingConstantsPass,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    }
    
    // Quantization configuration for StableHLO Quantizer. This is the primary
    // message containing all configurable options.
    // Next ID: 9
    message QuantizationConfig {
      // Config presets provide predefined popular or common quantization specs.
      // Lightweight users may choose one of the presets for quick experiments. Each
      // preset is completely represented by other fields in `QuantizationConfig`.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	Path string
    	Err  error
    }
    
    func (e FileError) Error() string {
    	return fmt.Sprintf("%s: %s", e.Path, e.Err)
    }
    
    func (e FileError) Unwrap() error {
    	return e.Err
    }
    
    var (
    	// Predefined error messages for invalid files. Not exhaustive.
    	errPathNotClean    = errors.New("file path is not clean")
    	errPathNotRelative = errors.New("file path is not relative")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/pgen.go

    	for i, n := range fn.Dcl {
    		if n.Op() != ir.ONAME || n.Class != ir.PAUTO && !(n.Class == ir.PPARAMOUT && n.IsOutputParamInRegisters()) {
    			// i.e., stack assign if AUTO, or if PARAMOUT in registers (which has no predefined spill locations)
    			continue
    		}
    		if mls != nil && mls.Subsumed(n) {
    			continue
    		}
    		if !n.Used() {
    			fn.DebugInfo.(*ssa.FuncDebug).OptDcl = fn.Dcl[i:]
    			fn.Dcl = fn.Dcl[:i]
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top