Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for numbering (0.16 sec)

  1. src/cmd/vendor/golang.org/x/text/language/coverage.go

    	Regions() []Region
    }
    
    var (
    	// Supported defines a Coverage that lists all supported subtags. Tags
    	// always returns nil.
    	Supported Coverage = allSubtags{}
    )
    
    // TODO:
    // - Support Variants, numbering systems.
    // - CLDR coverage levels.
    // - Set of common tags defined in this package.
    
    type allSubtags struct{}
    
    // Regions returns the list of supported regions. As all regions are in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/log/slog/level.go

    type Level int
    
    // Names for common levels.
    //
    // Level numbers are inherently arbitrary,
    // but we picked them to satisfy three constraints.
    // Any system can map them to another numbering scheme if it wishes.
    //
    // First, we wanted the default level to be Info, Since Levels are ints, Info is
    // the default value for int, zero.
    //
    // Second, we wanted to make it easy to use levels to specify logger verbosity.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:34:43 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    		path, fname := cutLastDot(fr.Function)
    		if path == lastImport {
    			path = `"` // (a ditto mark)
    		} else {
    			lastImport = path
    		}
    		var loc string
    		if fr.Func != nil {
    			// Use function-relative line numbering.
    			// f:+2 means two lines into function f.
    			// f:-1 should never happen, but be conservative.
    			_, entryLine := fr.Func.FileLine(fr.Entry)
    			loc = fmt.Sprintf("%s.%s:%+d", path, fname, fr.Line-entryLine)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    A custom `message` allows explaining why the artifact coordinates have changed.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/phi.go

    	s       *state                   // SSA state
    	f       *ssa.Func                // function to work on
    	defvars []map[ir.Node]*ssa.Value // defined variables at end of each block
    
    	varnum map[ir.Node]int32 // variable numbering
    
    	// properties of the dominator tree
    	idom  []*ssa.Block // dominator parents
    	tree  []domBlock   // dominator child+sibling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/dom.go

    			break
    		}
    	}
    	// Set idom of entry block to nil instead of itself.
    	idom[f.Entry.ID] = nil
    	return idom
    }
    
    // intersect finds the closest dominator of both b and c.
    // It requires a postorder numbering of all the blocks.
    func intersect(b, c *Block, postnum []int, idom []*Block) *Block {
    	// TODO: This loop is O(n^2). It used to be used in nilcheck,
    	// see BenchmarkNilCheckDeep*.
    	for b != c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/cpu.go

    	REG_F22
    	REG_F23
    	REG_F24
    	REG_F25
    	REG_F26
    	REG_F27
    	REG_F28
    	REG_F29
    	REG_F30
    	REG_F31
    
    	// This marks the end of the register numbering.
    	REG_END
    
    	// General registers reassigned to ABI names.
    	REG_ZERO = REG_X0
    	REG_RA   = REG_X1 // aka REG_LR
    	REG_SP   = REG_X2
    	REG_GP   = REG_X3 // aka REG_SB
    	REG_TP   = REG_X4
    	REG_T0   = REG_X5
    	REG_T1   = REG_X6
    	REG_T2   = REG_X7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device_lib.h

      std::unique_ptr<ParallelTensor> ScalarsFromSequence(
          absl::Span<const DataType> values, TFE_Context* context,
          TF_Status* status) const;
    
      // A parallel tensor with scalar integers numbering component devices.
      std::unique_ptr<ParallelTensor> DeviceIDs(TFE_Context* context,
                                                TF_Status* status) const;
    
      // The number of devices operations run on.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. src/encoding/csv/reader.go

    	}
    	return record, err
    }
    
    // FieldPos returns the line and column corresponding to
    // the start of the field with the given index in the slice most recently
    // returned by [Reader.Read]. Numbering of lines and columns starts at 1;
    // columns are counted in bytes, not runes.
    //
    // If this is called with an out-of-bounds index, it panics.
    func (r *Reader) FieldPos(field int) (line, column int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/rangefunc/rewrite.go

    	body  *syntax.BlockStmt
    
    	// References to important types and values.
    	any   types2.Object
    	bool  types2.Object
    	int   types2.Object
    	true  types2.Object
    	false types2.Object
    
    	// Branch numbering, computed as needed.
    	branchNext map[branch]int             // branch -> #next value
    	labelLoop  map[string]*syntax.ForStmt // label -> innermost rangefunc loop it is declared inside (nil for no loop)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top