Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 795 for Traverse (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelGraph.java

                notifyListeners(node, parentListeners.get(node.getPath().getParent()));
                notifyListeners(node, listeners);
                if (!ancestorListeners.isEmpty()) {
                    // Don't traverse path back to root when there is nothing that can possibly match
                    for (ModelPath path = node.getPath().getParent(); path != null; path = path.getParent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeTraverser.java

    import java.util.Deque;
    import java.util.Iterator;
    import java.util.Queue;
    import javax.annotation.CheckForNull;
    
    /**
     * Views elements of a type {@code T} as nodes in a tree, and provides methods to traverse the trees
     * induced by this traverser.
     *
     * <p>For example, the tree
     *
     * <pre>{@code
     *        h
     *      / | \
     *     /  e  \
     *    d       g
     *   /|\      |
     *  / | \     f
     * a  b  c
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeTraverser.java

    import java.util.Queue;
    import java.util.function.Consumer;
    import javax.annotation.CheckForNull;
    
    /**
     * Views elements of a type {@code T} as nodes in a tree, and provides methods to traverse the trees
     * induced by this traverser.
     *
     * <p>For example, the tree
     *
     * <pre>{@code
     *        h
     *      / | \
     *     /  e  \
     *    d       g
     *   /|\      |
     *  / | \     f
     * a  b  c
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/bcache/cache.go

    	//     the list that we've confirmed has no entry for k.
    	//     The next time down the list, we can stop at noK,
    	//     because new entries are inserted at the front of the list.
    	//     This guarantees we never traverse an entry
    	//     multiple times.
    	//
    	//  2. We only allocate the entry to be added once,
    	//     saving it in add for the next attempt.
    	var add, noK *cacheEntry[K, V]
    	n := 0
    	for {
    		e := head.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy.go

    func (m *MapValue) Contains(key ref.Val) ref.Val {
    	v, found := m.Find(key)
    	if v != nil && types.IsUnknownOrError(v) {
    		return v
    	}
    	return types.Bool(found)
    }
    
    // Iterator returns an iterator to traverse the map.
    func (m *MapValue) Iterator() traits.Iterator {
    	return &iterator{parent: m, index: 0}
    }
    
    // Size returns the number of currently known fields
    func (m *MapValue) Size() ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/cc/tools/freeze_saved_model_test.cc

    }
    
    TEST_F(FreezeTest, GraphDefWithMultiOutputOperation) {
      // Tensors from operations with multiple outputs get tensor suffixes when used
      // in input fields of following nodes, i.e. split:0, split:1.
      // Test that we traverse those correctly.
      SavedModelBundle saved_model_bundle;
      GraphDef graph_def;
      Scope scope = Scope::NewRootScope();
      Output a = ops::Const(scope.WithOpName("a"), {10.0f, 10.0f}, {2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "json-schema-traverse": "^0.4.1",
            "uri-js": "^4.2.2"
          },
          "funding": {
            "type": "github",
            "url": "https://github.com/sponsors/epoberezkin"
          }
        },
        "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": {
          "version": "0.4.1",
          "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

      }
    }
    
    void CheckControlDependenciesForFunc(
        func::FuncOp func, const TF::SideEffectAnalysis::Info& analysis_for_func,
        int& path_idx) {
      IslandToIslandMapVec op_to_control_sources;
    
      // Traverse islands in topological order.
      func.walk([&](IslandOp source_island) {
        for (Operation* user : source_island.getControl().getUsers()) {
          auto target_island = dyn_cast<IslandOp>(user);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top