Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for nameindex (0.17 sec)

  1. src/go/internal/gcimporter/iimport.go

    		}
    
    		p.pkgCache[pkgPathOff] = pkg
    
    		nameIndex := make(map[string]uint64)
    		for nSyms := r.uint64(); nSyms > 0; nSyms-- {
    			name := p.stringAt(r.uint64())
    			nameIndex[name] = r.uint64()
    		}
    
    		p.pkgIndex[pkg] = nameIndex
    		pkgList[i] = pkg
    	}
    
    	localpkg := pkgList[0]
    
    	names := make([]string, 0, len(p.pkgIndex[localpkg]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

            val value = readByteString()
            headerList.add(Header(name, value))
          }
    
          @Throws(IOException::class)
          private fun readLiteralHeaderWithIncrementalIndexingIndexedName(nameIndex: Int) {
            val name = getName(nameIndex)
            val value = readByteString()
            insertIntoDynamicTable(-1, Header(name, value))
          }
    
          @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    		extend = string(rest[1 : len(rest)-1])
    	}
    
    	// Now we can build up a useful data structure.
    	// First the zone information.
    	//	utcoff[4] isdst[1] nameindex[1]
    	nzone := n[NZone]
    	if nzone == 0 {
    		// Reject tzdata files with no zones. There's nothing useful in them.
    		// This also avoids a panic later when we add and then use a fake transition (golang.org/issue/29437).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	jmcTZIndex        ID = 402
    	jvIndex           ID = 403
    	jwIndex           ID = 404
    	kaIndex           ID = 405
    	kaGEIndex         ID = 406
    	kabIndex          ID = 407
    	kabDZIndex        ID = 408
    	kajIndex          ID = 409
    	kamIndex          ID = 410
    	kamKEIndex        ID = 411
    	kcgIndex          ID = 412
    	kdeIndex          ID = 413
    	kdeTZIndex        ID = 414
    	keaIndex          ID = 415
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    package compact
    
    var (
    	und = Tag{}
    
    	Und Tag = Tag{}
    
    	Afrikaans            Tag = Tag{language: afIndex, locale: afIndex}
    	Amharic              Tag = Tag{language: amIndex, locale: amIndex}
    	Arabic               Tag = Tag{language: arIndex, locale: arIndex}
    	ModernStandardArabic Tag = Tag{language: ar001Index, locale: ar001Index}
    	Azerbaijani          Tag = Tag{language: azIndex, locale: azIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * monitor.
       */
      private E extract() {
        final E[] items = this.items;
        E x = items[takeIndex];
        items[takeIndex] = null;
        takeIndex = inc(takeIndex);
        --count;
        return x;
      }
    
      /**
       * Utility for remove and iterator.remove: Delete item at position i. Call only when occupying
       * monitor.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  7. test/fixedbugs/issue31252.dir/c.go

    // license that can be found in the LICENSE file.
    
    package c
    
    import (
    	"./a"
    	"./b"
    )
    
    type HandlerFunc func(*string)
    
    func RouterInit() {
    	//home API
    	homeIndex := &a.IndexController{}
    	GET("/home/index/index", homeIndex.Index)
    	//admin API
    	adminIndex := &b.IndexController{}
    	GET("/admin/index/index", adminIndex.Index)
    	return
    }
    
    func GET(path string, handlers ...HandlerFunc) {
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 503 bytes
    - Viewed (0)
  8. src/compress/bzip2/huffman.go

    		}
    
    		// Trick a compiler into generating conditional move instead of branch,
    		// by making both loads unconditional.
    		l, r := node.left, node.right
    
    		if bit == 1 {
    			nodeIndex = l
    		} else {
    			nodeIndex = r
    		}
    
    		if nodeIndex == invalidNodeValue {
    			// We found a leaf. Use the value of bit to decide
    			// whether is a left or a right value.
    			l, r := node.leftValue, node.rightValue
    			if bit == 1 {
    				v = l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/node_tree.go

    	numExhaustedZones := 0
    	nodeIndex := 0
    	for len(nodesList) < nt.numNodes {
    		if numExhaustedZones >= len(nt.zones) { // all zones are exhausted.
    			return nodesList, errors.New("all zones exhausted before reaching count of nodes expected")
    		}
    		for zoneIndex := 0; zoneIndex < len(nt.zones); zoneIndex++ {
    			na := nt.tree[nt.zones[zoneIndex]]
    			if nodeIndex >= len(na) { // If the zone is exhausted, continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/mono.go

    				}
    			}
    		}
    	}
    
    	if w.nameIdx == nil {
    		w.nameIdx = make(map[*TypeName]int)
    	}
    	w.nameIdx[obj] = idx
    	return idx
    }
    
    // typeParamVertex returns the index of the vertex representing tpar.
    func (w *monoGraph) typeParamVertex(tpar *TypeParam) int {
    	if x, ok := w.canon[tpar]; ok {
    		tpar = x
    	}
    
    	obj := tpar.Obj()
    
    	if idx, ok := w.nameIdx[obj]; ok {
    		return idx
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top