Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 406 for reachable (0.56 sec)

  1. pkg/proxy/topology.go

    //
    //   - The combined list of all endpoints reachable from this node (which is the union of the
    //     previous two lists, but in the case where it is identical to one or the other, we avoid
    //     allocating a separate list).
    //
    //   - An indication of whether the service has any endpoints reachable from anywhere in the
    //     cluster. (This may be true even if allReachableEndpoints is empty.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

        const Graph& graph, const FunctionLibraryDefinition* function_library,
        const std::function<bool(const Graph& graph)>& predicate) {
      if (predicate(graph)) {
        return success();
      }
    
      // Check if any reachable functions from the graph has the target attribute.
      GraphDef graph_def;
      graph.ToGraphDef(&graph_def);
      if (!function_library) return failure();
      for (const std::string& func_name :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. cmd/healthcheck-handler.go

    		return
    	}
    	writeResponse(w, http.StatusOK, nil, mimeNone)
    }
    
    // ReadinessCheckHandler checks whether MinIO is up and ready to serve requests.
    // It also checks whether the KMS is available and whether etcd is reachable,
    // if configured.
    func ReadinessCheckHandler(w http.ResponseWriter, r *http.Request) {
    	if objLayer := newObjectLayerFn(); objLayer == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/internal/dag/alg.go

    		visit(root)
    	}
    	for i, j := 0, len(topo)-1; i < j; i, j = i+1, j-1 {
    		topo[i], topo[j] = topo[j], topo[i]
    	}
    	return topo
    }
    
    // TransitiveReduction removes edges from g that are transitively
    // reachable. g must be transitively closed.
    func (g *Graph) TransitiveReduction() {
    	// For i -> j -> k, if i -> k exists, delete it.
    	for _, i := range g.Nodes {
    		for _, j := range g.Nodes {
    			if g.HasEdge(i, j) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 15:31:44 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/tpu_cluster_util.h

    #include "tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h"
    
    namespace mlir {
    namespace TFTPU {
    
    // For each TPU cluster in `module`, walk over all ops inside the cluster
    // and reachable in the call graph from the cluster.
    // For each op walked, `callback` is applied to the op, the root cluster, and
    // the root cluster's host device. `callback` returning WasInterrupted
    // indicates failure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

        // the index doesn't cover classfiles from compiler output,
        // so the lowering fails.
        //
        // To solve the problem, we need to find all delegated properties with inline accessors
        // reachable from files that will be compiled, and include files these inline accessors
        // to the set of files that will be compiled (and do the same for these files recursively).
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/HasFinalizers.java

            // can potentially still execute
            // So visit all the finalizer groups reachable from groups that the node belongs to and the finalized nodes of those groups
            Set<FinalizerGroup> seen = new HashSet<>();
            List<FinalizerGroup> queue = new ArrayList<>(groups);
            while (!queue.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 16 22:19:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

        private val directDependentsByKtModule: Map<KtModule, Set<KtModule>> by lazy {
            // Direct dependencies should be computed lazily, because the built-ins module will be reachable via module dependencies. Getting
            // the built-ins module relies on the built-ins session, which may depend on services that are registered after
            // `KtStaticModuleDependentsProvider`.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/graph/CachingDirectedGraphWalker.java

    import java.util.Deque;
    import java.util.HashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * A graph walker which collects the values reachable from a given set of start nodes. Handles cycles in the graph. Can
     * be reused to perform multiple searches, and reuses the results of previous searches.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprogcgo/pprof_callback.go

    func CgoPprofCallback() {
    	// Issue 50936 was a crash in the SIGPROF handler when the signal
    	// arrived during the exitsyscall following a cgocall(back) in dropg or
    	// execute, when updating mp.curg.
    	//
    	// These are reachable only when exitsyscall finds no P available. Thus
    	// we make C calls from significantly more Gs than there are available
    	// Ps. Lots of runnable work combined with >20us spent in callGo makes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top