Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 112 for Indexer (2.87 sec)

  1. cmd/endpoint.go

    				continue
    			}
    			foundSet.Add(endpoint.Hostname())
    		}
    	}
    	return foundSet.ToSlice()
    }
    
    // hostsSorted will return all hosts found.
    // The LOCAL host will be nil, but the indexes of all hosts should
    // remain consistent across the cluster.
    func (l EndpointServerPools) hostsSorted() []*xnet.Host {
    	peers, localPeer := l.peers()
    	sort.Strings(peers)
    	hosts := make([]*xnet.Host, len(peers))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/sym.go

    		if rs.ContentAddressable() {
    			// for now, only support content-addressable symbols that are always locally defined.
    			panic("hashed refs unsupported for now")
    		}
    		if pkg == "" || pkg == "\"\"" || pkg == "_" || !rs.Indexed() {
    			rs.PkgIdx = goobj.PkgIdxNone
    			rs.SymIdx = nonpkgidx
    			rs.Set(AttrIndexed, true)
    			if nonpkgidx != nonpkgdef+int32(len(ctxt.nonpkgrefs)) {
    				panic("bad index")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    	AttrLocal
    
    	// For function symbols; indicates that the specified function was the
    	// target of an inline during compilation
    	AttrWasInlined
    
    	// Indexed indicates this symbol has been assigned with an index (when using the
    	// new object file format).
    	AttrIndexed
    
    	// Only applied on type descriptor symbols, UsedInIface indicates this type is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    		readVendorList(VendorDir())
    		var indexes []*modFileIndex
    		var modFiles []*modfile.File
    		var modRoots []string
    		for _, m := range MainModules.Versions() {
    			indexes = append(indexes, MainModules.Index(m))
    			modFiles = append(modFiles, MainModules.ModFile(m))
    			modRoots = append(modRoots, MainModules.ModRoot(m))
    		}
    		checkVendorConsistency(indexes, modFiles, modRoots)
    		rs.initVendor(vendorList)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// InitContainersToStart keeps a list of indexes for the init containers to
    	// start, where the index is the index of the specific init container in the
    	// pod spec (pod.Spec.InitContainers).
    	// NOTE: This is a field for SidecarContainers feature. Either this or
    	// NextInitContainerToStart will be set.
    	InitContainersToStart []int
    	// ContainersToStart keeps a list of indexes for the containers to start,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/image/gif/writer_test.go

    	}
    
    	if g0.LoopCount != g1.LoopCount {
    		t.Errorf("loop counts differ: %d and %d", g0.LoopCount, g1.LoopCount)
    	}
    	if backgroundIndex != g1.BackgroundIndex {
    		t.Errorf("background indexes differ: %d and %d", backgroundIndex, g1.BackgroundIndex)
    	}
    	if len(g0.Image) != len(g1.Image) {
    		t.Fatalf("image lengths differ: %d and %d", len(g0.Image), len(g1.Image))
    	}
    	if len(g1.Image) != len(g1.Delay) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/ureader.go

    // description.
    type pkgReader struct {
    	pkgbits.PkgDecoder
    
    	fake fakeFileSet
    
    	ctxt    *types.Context
    	imports map[string]*types.Package // previously imported packages, indexed by path
    
    	// lazily initialized arrays corresponding to the unified IR
    	// PosBase, Pkg, and Type sections, respectively.
    	posBases []string // position bases (i.e., file names)
    	pkgs     []*types.Package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (FMOVDload [off1] {sym} (ADDconst [off2] ptr) mem) && is32Bit(int64(off1)+off2)
    	&& (ptr.Op != OpSB || !config.ctxt.Flag_dynlink) =>
    	(FMOVDload [off1+int32(off2)] {sym} ptr mem)
    
    // register indexed load
    (MOVDload  [off] {sym} (ADD ptr idx) mem) && off == 0 && sym == nil => (MOVDloadidx ptr idx mem)
    (MOVWUload [off] {sym} (ADD ptr idx) mem) && off == 0 && sym == nil => (MOVWUloadidx ptr idx mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/iimport.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Indexed package import.
    // See cmd/compile/internal/gc/iexport.go for the export data format.
    
    package gcimporter
    
    import (
    	"bufio"
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"go/constant"
    	"go/token"
    	"go/types"
    	"internal/saferio"
    	"io"
    	"math"
    	"math/big"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/encoding/gob/encode.go

    // as delta field number of 0.
    func encStructTerminator(i *encInstr, state *encoderState, v reflect.Value) {
    	state.encodeUint(0)
    }
    
    // Execution engine
    
    // encEngine an array of instructions indexed by field number of the encoding
    // data, typically a struct. It is executed top to bottom, walking the struct.
    type encEngine struct {
    	instr []encInstr
    }
    
    const singletonField = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top