Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for Indexes (0.34 sec)

  1. 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)
  2. 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)
  3. pkg/kubelet/cm/dra/plugin/noderesources.go

    			break
    		}
    		logger.V(5).Info("Getting Node object failed, waiting", "err", err)
    		select {
    		case <-ctx.Done():
    			return
    		case <-time.After(time.Second):
    		}
    	}
    
    	// We could use an indexer on driver name, but that seems overkill.
    	informer := resourceinformers.NewFilteredResourceSliceInformer(c.kubeClient, resyncPeriod, nil, func(options *metav1.ListOptions) {
    		options.FieldSelector = "nodeName=" + node.Name
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			test.resetStatusFn(status)
    		}
    	}
    }
    
    func getKillMap(pod *v1.Pod, status *kubecontainer.PodStatus, cIndexes []int) map[kubecontainer.ContainerID]containerToKillInfo {
    	m := map[kubecontainer.ContainerID]containerToKillInfo{}
    	for _, i := range cIndexes {
    		m[status.ContainerStatuses[i].ID] = containerToKillInfo{
    			container: &pod.Spec.Containers[i],
    			name:      pod.Spec.Containers[i].Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// Load bytes in reverse endian order of the arch from arg0 into a 64 bit register, all zero extend.
    		// The generated instructions are indexed loads with no offset field in the instruction so the aux fields are not used.
    		// In these cases the index register field is set to 0 and the full address is in the base register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        return std::nullopt;
      }
    
     private:
      friend class detail::BacktrackAnalysis;
    
      // Region for which this object holds the analysis info.
      Region* region_;
    
      // Backtracked values indexed by the result number.
      llvm::SmallVector<Value, 4> backtracked_values_;
    };
    
    //===----------------------------------------------------------------------===//
    // BacktrackAnalysis
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top