Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for Traverser (0.17 sec)

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

            /**
             * Determines whether the goal has already been achieved. Invoked prior to traversing any dependencies of this goal, and if true is returned the dependencies of this goal are not traversed and
             * the action not applied.
             */
            public boolean isAchieved() {
                return false;
            }
    
            /**
             * Invoked prior to calculating dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // with parallel_ids `{group0:branch0}` and `{group0:branch1}` live at
      // stack depth 1 and are depended on by ops with parallel_ids `{}`.
      StackResourceToOps stack_up_;
    
      // Parallel ids of the previously traversed op in the same function.
      // The transition from the previous parallel_ids to the current parallel_ids
      // determines which stack actions occur.
      ParallelIdsMap previous_parallel_ids_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stdlib_test.go

    	pkgFiles, err := pkgFilenames(dir, false)
    	if err != nil {
    		w.errh(err)
    		return
    	}
    	if pkgFiles != nil {
    		w.pkgh(dir, pkgFiles)
    	}
    
    	// traverse subdirectories, but don't walk into testdata
    	for _, f := range files {
    		if f.IsDir() && f.Name() != "testdata" {
    			w.walk(filepath.Join(dir, f.Name()))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. cmd/erasure.go

    					wait()
    					return nil
    				})
    			})
    		}(disk)
    	}
    	wg.Wait()
    }
    
    // nsScanner will start scanning buckets and send updated totals as they are traversed.
    // Updates are sent on a regular basis and the caller *must* consume them.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      // All incoming requests must go through the waypoint.
      GatewayAddress waypoint = 8;
    
      // If present, East West network gateway this workload can be reached through.
      // Requests from remote networks should traverse this gateway.
      GatewayAddress network_gateway = 19;
    
      // Name of the node the workload runs on
      string node = 9;
    
      // CanonicalName for the workload. Used for telemetry.
      string canonical_name = 10;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      auto tensor_names = llvm::map_range(
          indices, [&](int i) { return subgraph.tensors.at(i)->name; });
      return builder->getNamedAttr(
          name, builder->getStringAttr(llvm::join(tensor_names, ",")));
    }
    
    // Traverses the subgraph from output_indices to input_indices and returns the
    // set of ops that are visited.
    StatusOr<absl::flat_hash_set<const tflite::OperatorT*>> PruneSubgraph(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

      }
    
      @LazyInit @RetainedWith @CheckForNull private transient ImmutableSet<Entry<K, V>> entries;
    
      /**
       * Returns an immutable collection of all key-value pairs in the multimap. Its iterator traverses
       * the values for the first key, the values for the second key, and so on.
       */
      @Override
      public ImmutableSet<Entry<K, V>> entries() {
        ImmutableSet<Entry<K, V>> result = entries;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactHashSet.java

     * add(x)} operations <i>do not</i> create objects for the garbage collector to deal with, and for
     * every element added, the garbage collector will have to traverse {@code 1.5} references on
     * average, in the marking phase, not {@code 5.0} as in {@code java.util.HashSet}.
     *
     * <p>If there are no removals, then {@link #iterator iteration} order is the same as insertion
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            traverseGraph(resolveState);
    
            validateGraph(resolveState, failingOnDynamicVersions, failingOnChangingVersions);
    
            assembleResult(resolveState, modelVisitor);
        }
    
        /**
         * Traverses the dependency graph, resolving conflicts and building the paths from the root configuration.
         */
        private void traverseGraph(final ResolveState resolveState) {
            resolveState.onMoreSelected(resolveState.getRoot());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      // Visit functions bottom up when doing the analysis. Note that SCC iterator
      // has the property that if there is an edge from SCC1->SCC2, SCC1 is visited
      // after SCC2, i.e., the graph is traversed bottom up just the way we want.
      auto scc_begin = llvm::scc_begin(&call_graph);
      auto scc_end = llvm::scc_end(&call_graph);
      for (auto& scc : make_range(scc_begin, scc_end)) {
    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