Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 310 for indexer (1.14 sec)

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

    // other language matched.
    func MatchStrings(m Matcher, lang ...string) (tag Tag, index int) {
    	for _, accept := range lang {
    		desired, _, err := ParseAcceptLanguage(accept)
    		if err != nil {
    			continue
    		}
    		if tag, index, conf := m.Match(desired...); conf != No {
    			return tag, index
    		}
    	}
    	tag, index, _ = m.Match()
    	return
    }
    
    // Matcher is the interface that wraps the Match method.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    )
    
    // A Mem is a memory reference made up of a base R and index expression X.
    // The effective memory address is R or R+X depending on AddrMode.
    // The index expression is X = Sign*(Index Shift Count) + Offset,
    // but in any instruction either Sign = 0 or Offset = 0.
    type Mem struct {
    	Base   Reg
    	Mode   AddrMode
    	Sign   int8
    	Index  Reg
    	Shift  Shift
    	Count  uint8
    	Offset int16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/gofmt/testdata/tabs.golden

    //gofmt
    
    package main
    
    var _ = []struct {
    	S       string
    	Integer int
    }{
    	{
    		S:       "Hello World",
    		Integer: 42,
    	},
    	{
    		S:       "\t",
    		Integer: 42,
    	},
    	{
    		S:       "	", // an actual <tab>
    		Integer: 42,
    	},
    	{
    		S:       `	`, // an actual <tab>
    		Integer: 42,
    	},
    	{
    		S:       "\u0009",
    		Integer: 42,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 480 bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    // locationIDMap is like a map[uint64]*Location, but provides efficiency for
    // ids that are densely numbered, which is often the case.
    type locationIDMap struct {
    	dense  []*Location          // indexed by id for id < len(dense)
    	sparse map[uint64]*Location // indexed by id for id >= len(dense)
    }
    
    func makeLocationIDMap(n int) locationIDMap {
    	return locationIDMap{
    		dense:  make([]*Location, n),
    		sparse: map[uint64]*Location{},
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "I64Load8S", asm: "I64Load8S", argLength: 2, reg: gpload, aux: "Int64", typ: "Int8"},     // read signed 8-bit integer from address arg0+aux, arg1=mem
    		{name: "I64Load16U", asm: "I64Load16U", argLength: 2, reg: gpload, aux: "Int64", typ: "UInt16"}, // read unsigned 16-bit integer from address arg0+aux, arg1=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    // The general forms and their encodings are:
    //
    //	sym±offset(symkind)(reg)(index*scale)
    //		Memory reference at address &sym(symkind) + offset + reg + index*scale.
    //		Any of sym(symkind), ±offset, (reg), (index*scale), and *scale can be omitted.
    //		If (reg) and *scale are both omitted, the resulting expression (index) is parsed as (reg).
    //		To force a parsing as index*scale, write (index*1).
    //		Encoding:
    //			type = TYPE_MEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//  var y = *x
    	InvalidIndirection
    
    	/* exprs > [] */
    
    	// NonIndexableOperand occurs when an index operation is applied to a value
    	// that cannot be indexed.
    	//
    	// Example:
    	//  var x = 1
    	//  var y = x[1]
    	NonIndexableOperand
    
    	// InvalidIndex occurs when an index argument is not of integer type,
    	// negative, or out-of-bounds.
    	//
    	// Example:
    	//  var s = [...]int{1,2,3}
    	//  var x = s[5]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/iexport.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Indexed package export.
    //
    // The indexed export data format is an evolution of the previous
    // binary export data format. Its chief contribution is introducing an
    // index table, which allows efficient random access of individual
    // declarations and inline function bodies. In turn, this allows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_negative_p.txt

    ! go build -p=-1 example.go
    stderr 'go: -p must be a positive integer: -1'
    
    -- example.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 18 17:25:17 UTC 2021
    - 108 bytes
    - Viewed (0)
  10. src/cmd/go/internal/lockedfile/transform_test.go

    			err := lockedfile.Transform(path, func(data []byte) (chunk []byte, err error) {
    				chunk = buf[offset*8 : (offset+chunkWords)*8]
    
    				if len(data)&^7 != len(data) {
    					t.Errorf("read %d bytes, but each write is an integer multiple of 8 bytes", len(data))
    					return chunk, nil
    				}
    
    				words := len(data) / 8
    				if !isPowerOf2(words) {
    					t.Errorf("read %d 8-byte words, but each write is a power-of-2 number of words", words)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top