Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,108 for reachable (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/tpu_cluster_util.cc

        });
      });
      if (result.wasInterrupted()) return failure();
    
      // Traverse ops that are reachable from some TPU cluster.
      // node_to_cluster is used to avoid traversing the same node twice, and to
      // check that no node is reachable from multiple TPU clusters.
      std::unordered_map<CallGraphNode*, tf_device::ClusterOp> node_to_cluster;
      while (!pending_call_nodes.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/internalbootstrap/default-internal.go

    // reachable from this map.
    var MandatoryFlowSchemas = internalizeFSes(bootstrap.MandatoryFlowSchemas)
    
    // MandatoryPriorityLevelConfigurations holds the untyped renditions of the
    // mandatory priority level configuration objects.  In this map the
    // key is the object's name and the value is the
    // `*PriorityLevelConfiguration`.  Nobody should mutate anything
    // reachable from this map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

    import javax.annotation.Nullable;
    
    public interface ViewBuilder<T> {
    
        /**
         * Mixes the given object into all views of the given type created using {@link #build(Object)}.
         * Applied to all views reachable from created views. The mix-in object should be serializable.
         *
         * When a given method cannot be found on the source object for a view, the mix-in object is searched for a compatible method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/ingress.go

    func (c *ingressImpl) Cluster() cluster.Cluster {
    	return c.cluster
    }
    
    // HTTPAddresses returns the externally reachable HTTP hosts and port (80) of the component.
    func (c *ingressImpl) HTTPAddresses() ([]string, []int) {
    	return c.AddressesForPort(80)
    }
    
    // TCPAddresses returns the externally reachable TCP hosts and port (31400) of the component.
    func (c *ingressImpl) TCPAddresses() ([]string, []int) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/Graphs.java

        }
    
        return transitiveClosure.build();
      }
    
      /**
       * Returns the set of nodes that are reachable from {@code node}. Node B is defined as reachable
       * from node A if there exists a path (a sequence of adjacent outgoing edges) starting at node A
       * and ending at node B. Note that a node is always reachable from itself via a zero-length path.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/deadcode_test.go

    			}
    			for _, pos := range test.pos {
    				if !bytes.Contains(out, []byte(pos+"\n")) {
    					t.Errorf("%s should be reachable. Output:\n%s", pos, out)
    				}
    			}
    			for _, neg := range test.neg {
    				if bytes.Contains(out, []byte(neg+"\n")) {
    					t.Errorf("%s should not be reachable. Output:\n%s", neg, out)
    				}
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:07:26 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/Graphs.java

        }
    
        return transitiveClosure.build();
      }
    
      /**
       * Returns the set of nodes that are reachable from {@code node}. Node B is defined as reachable
       * from node A if there exists a path (a sequence of adjacent outgoing edges) starting at node A
       * and ending at node B. Note that a node is always reachable from itself via a zero-length path.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/visitor.h

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Walks the function by following function call chains and calling the callback
    // for each reachable function (including `func`). Each function is visited only
    // once even if it's called from multiple places and/or recursively.
    //
    // The current implementation follows direct calls to `mlir::func::FuncOp` only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/internal/weak/pointer.go

    weakly-pointed-to object becomes eligible for reclamation by the garbage
    collector.
    More specifically, weak pointers become nil as soon as the garbage collector
    identifies that the object is unreachable, before it is made reachable
    again by a finalizer.
    In terms of the C# language, these semantics are roughly equivalent to the
    the semantics of "short" weak references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/NodeGroup.java

    import javax.annotation.Nullable;
    
    /**
     * <p>Represents the reason why a node is included in the work graph. In general, nodes are included in the graph because they are either a "root node" or they are reachable from one or more "root nodes"
     * or both. There are two basic kind of "root nodes":</p>
     * <ul>
     *     <li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 19 19:58:07 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top