Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for intree (0.1 sec)

  1. android/guava/src/com/google/common/graph/Traverser.java

      public static <N> Traverser<N> forTree(SuccessorsFunction<N> tree) {
        if (tree instanceof BaseGraph) {
          checkArgument(((BaseGraph<?>) tree).isDirected(), "Undirected graphs can never be trees.");
        }
        if (tree instanceof Network) {
          checkArgument(((Network<?, ?>) tree).isDirected(), "Undirected networks can never be trees.");
        }
        return new Traverser<N>(tree) {
          @Override
          Traversal<N> newTraversal() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Traverser.java

      public static <N> Traverser<N> forTree(SuccessorsFunction<N> tree) {
        if (tree instanceof BaseGraph) {
          checkArgument(((BaseGraph<?>) tree).isDirected(), "Undirected graphs can never be trees.");
        }
        if (tree instanceof Network) {
          checkArgument(((Network<?, ?>) tree).isDirected(), "Undirected networks can never be trees.");
        }
        return new Traverser<N>(tree) {
          @Override
          Traversal<N> newTraversal() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	"k8s.io/kubernetes/pkg/scheduler/util"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    // InTreeToCSITranslator contains methods required to check migratable status
    // and perform translations from InTree PV's to CSI
    type InTreeToCSITranslator interface {
    	IsPVMigratable(pv *v1.PersistentVolume) bool
    	IsInlineMigratable(vol *v1.Volume) bool
    	IsMigratableIntreePluginByName(inTreePluginName string) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	// pvcQueue is used to queue pvc objects
    	pvcQueue workqueue.TypedRateLimitingInterface[string]
    
    	// csiMigratedPluginManager detects in-tree plugins that have been migrated to CSI
    	csiMigratedPluginManager csimigration.PluginManager
    
    	// intreeToCSITranslator translates from in-tree volume specs to CSI
    	intreeToCSITranslator csimigration.InTreeToCSITranslator
    }
    
    func (adc *attachDetachController) Run(ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	DynamicProvisions []*v1.PersistentVolumeClaim
    }
    
    // InTreeToCSITranslator contains methods required to check migratable status
    // and perform translations from InTree PV's to CSI
    type InTreeToCSITranslator interface {
    	IsPVMigratable(pv *v1.PersistentVolume) bool
    	GetInTreePluginNameFromSpec(pv *v1.PersistentVolume, vol *v1.Volume) (string, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. pkg/util/iptree/iptree.go

    	// to avoid memory leak
    	child.child[0] = nil
    	child.child[1] = nil
    }
    
    // Tree is a radix tree for IPv4 and IPv6 networks.
    type Tree[T any] struct {
    	rootV4 *node[T]
    	rootV6 *node[T]
    }
    
    // New creates a new Radix Tree for IP addresses.
    func New[T any]() *Tree[T] {
    	return &Tree[T]{
    		rootV4: &node[T]{
    			prefix: netip.PrefixFrom(netip.IPv4Unspecified(), 0),
    		},
    		rootV6: &node[T]{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/dwarfgen/dwinl.go

    	// children in the resulting table.
    	parCallIdx := -1
    	parInlIdx := base.Ctxt.InlTree.Parent(inlIdx)
    	if parInlIdx >= 0 {
    		parCallIdx = insertInlCall(dwcalls, parInlIdx, imap)
    	}
    
    	// Create new entry for this inline
    	inlinedFn := base.Ctxt.InlTree.InlinedFunction(inlIdx)
    	callXPos := base.Ctxt.InlTree.CallPos(inlIdx)
    	callPos := base.Ctxt.InnermostPos(callXPos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/pcln.go

    // pcinlineState holds the state used to create a function's inlining
    // tree and the PC-value table that maps PCs to nodes in that tree.
    type pcinlineState struct {
    	globalToLocal map[int]int
    	localTree     InlTree
    }
    
    // addBranch adds a branch from the global inlining tree in ctxt to
    // the function's local inlining tree, returning the index in the local tree.
    func (s *pcinlineState) addBranch(ctxt *Link, globalIndex int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  9. operator/pkg/tpath/tree.go

    // limitations under the License.
    
    /*
    tree.go contains functions for traversing and updating a tree constructed from yaml or json.Unmarshal.
    Nodes in such trees have the form map[interface{}]interface{} or map[interface{}][]interface{}.
    For some tree updates, like delete or append, it's necessary to have access to the parent node. PathContext is a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. src/internal/poll/fd_unix.go

    	}
    }
    
    // Pread wraps the pread system call.
    func (fd *FD) Pread(p []byte, off int64) (int, error) {
    	// Call incref, not readLock, because since pread specifies the
    	// offset it is independent from other reads.
    	// Similarly, using the poller doesn't make sense for pread.
    	if err := fd.incref(); err != nil {
    		return 0, err
    	}
    	if fd.IsStream && len(p) > maxRW {
    		p = p[:maxRW]
    	}
    	var (
    		n   int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top