Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 795 for Traverse (0.26 sec)

  1. guava/src/com/google/common/collect/CompactHashMap.java

          int oldNext = CompactHashing.tableGet(oldTable, oldTableIndex);
          // Each element of `oldTable` is the head of a (possibly empty) linked list of elements in
          // `entries`. The `oldNext` loop is going to traverse that linked list.
          // We need to rewrite the `next` link of each of the elements so that it is in the appropriate
          // linked list starting from `newTable`. In general, each element from the old linked list
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  2. src/net/http/fs.go

    			}
    		} else if url[len(url)-1] == '/' {
    			base := path.Base(url)
    			if base == "/" || base == "." {
    				// The FileSystem maps a path like "/" or "/./" to a file instead of a directory.
    				msg := "http: attempting to traverse a non-directory"
    				serveError(w, msg, StatusInternalServerError)
    				return
    			}
    			localRedirect(w, r, "../"+base)
    			return
    		}
    	}
    
    	if d.IsDir() {
    		url := r.URL.Path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // This handles the forward referencing template parameters found in
    // cast operators.
    func (st *state) setTemplate(a AST, tmpl *Template) {
    	seen := make(map[AST]bool)
    	a.Traverse(func(a AST) bool {
    		switch a := a.(type) {
    		case *TemplateParam:
    			if a.Template != nil {
    				if tmpl != nil {
    					st.fail("duplicate template parameters")
    				}
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/CompactHashMap.java

          int oldNext = CompactHashing.tableGet(oldTable, oldTableIndex);
          // Each element of `oldTable` is the head of a (possibly empty) linked list of elements in
          // `entries`. The `oldNext` loop is going to traverse that linked list.
          // We need to rewrite the `next` link of each of the elements so that it is in the appropriate
          // linked list starting from `newTable`. In general, each element from the old linked list
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/TypeToken.java

              @Override
              @CheckForNull
              Class<?> getSuperclass(Class<?> type) {
                return type.getSuperclass();
              }
            };
    
        /** For just classes, we don't have to traverse interfaces. */
        final TypeCollector<K> classesOnly() {
          return new ForwardingTypeCollector<K>(this) {
            @Override
            Iterable<? extends K> getInterfaces(K type) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeToken.java

              @Override
              @CheckForNull
              Class<?> getSuperclass(Class<?> type) {
                return type.getSuperclass();
              }
            };
    
        /** For just classes, we don't have to traverse interfaces. */
        final TypeCollector<K> classesOnly() {
          return new ForwardingTypeCollector<K>(this) {
            @Override
            Iterable<? extends K> getInterfaces(K type) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    		if _, f := unnamespacedRawAlias[referencedService]; !f {
    			// Common case: alias pointing to a concrete service
    			resolvedAliases[alias] = referencedService
    			continue
    		}
    		// Otherwise, we need to traverse the alias "graph".
    		// In an obscure edge case, a user could make a loop, so we will need to handle that.
    		seen := sets.New(alias.Hostname, referencedService)
    		for {
    			n, f := unnamespacedRawAlias[referencedService]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    			},
    			unset_focus	: function () {
    				if(this.is_focused()) {
    					this.get_container().removeClass("jstree-focused");
    					focused_instance = -1;
    				}
    				this.__callback();
    			},
    
    			// traverse
    			_get_node		: function (obj) {
    				var $obj = $(obj, this.get_container());
    				if($obj.is(".jstree") || obj == -1) { return -1; }
    				$obj = $obj.closest("li", this.get_container());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                }
            }
            registry.register("foo") { it.unmanaged(String, "ref.direct") { it } }
    
            expect:
            registry.realize("foo", String) == "value"
        }
    
        def "input path can traverse a reference"() {
            given:
            registry.register("parent") { parentBuilder ->
                parentBuilder.unmanagedNode(Object) { node ->
                    node.addLinkInstance("parent.child", "value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        }
      }
    
      std::vector<const tflite::OperatorT*> queue;
      for (int32_t output : output_indices) {
        if (auto& op = defining_op[output]) {
          queue.push_back(op);
        }
      }
    
      // Traverse the graph towards inputs.
      absl::flat_hash_set<const tflite::OperatorT*> visited;
      while (!queue.empty()) {
        const tflite::OperatorT* op = queue.back();
        queue.pop_back();
        if (!visited.insert(op).second) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top