Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for numbering (0.15 sec)

  1. src/cmd/compile/internal/ssa/value.go

    // Reg returns the register assigned to v, in cmd/internal/obj/$ARCH numbering.
    func (v *Value) Reg() int16 {
    	reg := v.Block.Func.RegAlloc[v.ID]
    	if reg == nil {
    		v.Fatalf("nil register for value: %s\n%s\n", v.LongString(), v.Block.Func)
    	}
    	return reg.(*Register).objNum
    }
    
    // Reg0 returns the register assigned to the first output of v, in cmd/internal/obj/$ARCH numbering.
    func (v *Value) Reg0() int16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/ir/func.go

    	// and go/defer wrappers, respectively. Used by closureName for creating
    	// unique function names.
    	// Tracking goDeferGen separately avoids wrappers throwing off
    	// function literal numbering (e.g., runtime/trace_test.TestTraceSymbolize.func11).
    	funcLitGen  int32
    	rangeLitGen int32
    	goDeferGen  int32
    
    	Label int32 // largest auto-generated label in this function
    
    	Endlineno src.XPos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"ordinals":                             "ordinals controls the numbering of replica indices in a StatefulSet. The default ordinals behavior assigns a \"0\" index to the first replica and increments the index by one for each additional replica requested. Using the ordinals field requires the StatefulSetStartOrdinal feature...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/buildid.go

    			}
    			if field == "version" && i < len(fields)-1 {
    				// Check that the next field is plausibly a version number.
    				// We require only that it begins with an ASCII digit,
    				// since we don't know what version numbering schemes a given
    				// C compiler may use. (Clang and GCC mostly seem to follow the scheme X.Y.Z,
    				// but in https://go.dev/issue/64619 we saw "8.3 [DragonFly]", and who knows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	searchPath string
    
    	// trimPath is a filepath.ListSeparator-separated list of paths to trim.
    	trimPath string
    
    	// files maps from path name to a list of lines.
    	// files[*][0] is unused since line numbering starts at 1.
    	files map[string][]string
    
    	// errors collects errors encountered per file. These errors are
    	// consulted before returning out of these module.
    	errors map[string]error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/generated.proto

      // which is beta.
      // +optional
      optional StatefulSetPersistentVolumeClaimRetentionPolicy persistentVolumeClaimRetentionPolicy = 10;
    
      // ordinals controls the numbering of replica indices in a StatefulSet. The
      // default ordinals behavior assigns a "0" index to the first replica and
      // increments the index by one for each additional replica requested. Using
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	// ordinals controls the numbering of replica indices in a StatefulSet. The
    	// default ordinals behavior assigns a "0" index to the first replica and
    	// increments the index by one for each additional replica requested. Using
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    		// detector to be invoked before it has been initialized. Note
    		// the use of "regonly" instead of just ignoring the package
    		// completely-- we do this due to the requirements of the
    		// package ID numbering scheme. See the comment in
    		// $GOROOT/src/internal/coverage/pkid.go dealing with
    		// hard-coding of runtime package IDs.
    		cmode := cfg.BuildCoverMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top