Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 219 for Traverser (0.3 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

        if (replicate_attr) return mlir::WalkResult::interrupt();
        return mlir::WalkResult::advance();
      });
      return walk_result.wasInterrupted();
    }
    
    // Traverses each node in the graph and check if any of them is
    // TPUPartitionedCall. If so, return true. Otherwise, return false.
    bool DoesGraphContainTPUPartitionedCall(const Graph& graph) {
      for (const Node* node : graph.nodes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/internal/trace/mud.go

    				break
    			} else if oldSorted[i].x < edges[j].x {
    				newSorted[o] = oldSorted[i]
    				i++
    			} else {
    				newSorted[o] = edges[j]
    				j++
    			}
    		}
    		d.sorted = newSorted
    	}
    
    	// Traverse edges in order computing a cumulative sum.
    	csum, rate, prevX := 0.0, 0.0, 0.0
    	for _, e := range d.sorted {
    		newCsum := csum + (e.x-prevX)*rate
    		if newCsum >= y {
    			// y was exceeded between the previous edge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/selection.go

    //  2. the list of methods of an interface type; or
    //  3. the list of fields of a struct type.
    //
    // The earlier index entries are the indices of the embedded fields implicitly
    // traversed to get from (the type of) x to f, starting at embedding depth 0.
    func (s *Selection) Index() []int { return s.index }
    
    // Indirect reports whether any pointer indirection was required to get from
    // x to f in x.f.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. test/typeparam/orderedmapsimp.dir/a.go

    		return zero, false
    	}
    	return (*pn).val, true
    }
    
    // keyValue is a pair of key and value used while iterating.
    type keyValue[K, V any] struct {
    	key K
    	val V
    }
    
    // iterate returns an iterator that traverses the map.
    func (m *Map[K, V]) Iterate() *Iterator[K, V] {
    	sender, receiver := Ranger[keyValue[K, V]]()
    	var f func(*node[K, V]) bool
    	f = func(n *node[K, V]) bool {
    		if n == nil {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	"k8s.io/kubernetes/pkg/auth/nodeidentifier"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac"
    	"k8s.io/kubernetes/third_party/forked/gonum/graph"
    	"k8s.io/kubernetes/third_party/forked/gonum/graph/traverse"
    )
    
    // NodeAuthorizer authorizes requests from kubelets, with the following logic:
    //  1. If a request is not from a node (NodeIdentity() returns isNode=false), reject
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/sym.go

    const (
    	traverseDefs traverseFlag = 1 << iota
    	traverseRefs
    	traverseAux
    	traversePcdata
    
    	traverseAll = traverseDefs | traverseRefs | traverseAux | traversePcdata
    )
    
    // Traverse symbols based on flag, call fn for each symbol.
    func (ctxt *Link) traverseSyms(flag traverseFlag, fn func(*LSym)) {
    	fnNoNil := func(s *LSym) {
    		if s != nil {
    			fn(s)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/go/types/selection.go

    //  2. the list of methods of an interface type; or
    //  3. the list of fields of a struct type.
    //
    // The earlier index entries are the indices of the embedded fields implicitly
    // traversed to get from (the type of) x to f, starting at embedding depth 0.
    func (s *Selection) Index() []int { return s.index }
    
    // Indirect reports whether any pointer indirection was required to get from
    // x to f in x.f.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    		svo.NewValidatorForIndex = r.SubIndexValidator
    	}
    }
    
    // Validate validates the update from r.oldValue to r.value
    //
    // During evaluation, a temporary tree of ratchetingValueValidator is built for all
    // traversed field paths. It is necessary to build the tree to take advantage of
    // DeepEqual checks performed by lower levels of the object during validation without
    // greatly modifying `kube-openapi`'s implementation.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pkg/volume/volume_linux.go

    	if err != nil {
    		return nil, err
    	}
    	names, err := f.Readdirnames(-1)
    	f.Close()
    	if err != nil {
    		return nil, err
    	}
    	return names, nil
    }
    
    // walkDeep can be used to traverse directories and has two minor differences
    // from filepath.Walk:
    //   - List of files/dirs is not sorted for performance reasons
    //   - callback walkFunc is invoked on root directory after visiting children dirs and files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    // - Like all reference counting schemes, cycles lead to leaks.
    // - Each smart pointer is actually two pointers (8 bytes instead of 4).
    // - Every time a pointer is assigned, the entire list of pointers to that
    //   object is traversed.  This class is therefore NOT SUITABLE when there
    //   will often be more than two or three pointers to a particular object.
    // - References are only tracked as long as linked_ptr<> objects are copied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top