Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 565 for Inode (0.04 sec)

  1. android/guava-tests/test/com/google/common/graph/AbstractStandardDirectedNetworkTest.java

            assertThat(endpointPair.source()).isEqualTo(node);
            assertThat(endpointPair.target()).isEqualTo(endpointPair.adjacentNode(node));
          }
    
          for (Integer adjacentNode : network.adjacentNodes(node)) {
            Set<String> edges = network.edgesConnecting(node, adjacentNode);
            Set<String> antiParallelEdges = network.edgesConnecting(adjacentNode, node);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/AbstractStandardDirectedNetworkTest.java

            assertThat(endpointPair.source()).isEqualTo(node);
            assertThat(endpointPair.target()).isEqualTo(endpointPair.adjacentNode(node));
          }
    
          for (Integer adjacentNode : network.adjacentNodes(node)) {
            Set<String> edges = network.edgesConnecting(node, adjacentNode);
            Set<String> antiParallelEdges = network.edgesConnecting(adjacentNode, node);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

         * @param session the {@link Session}, must not be {@code null}
         * @param node the {@link Node} to flatten, must not be {@code null}
         * @param scope an optional {@link PathScope} to filter out dependencies
         * @return the flattened list of node
         * @throws DependencyResolverException
         */
        List<Node> flatten(@Nonnull Session session, @Nonnull Node node, @Nullable PathScope scope)
                throws DependencyResolverException;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 16 14:15:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/MutableValueGraph.java

      @CheckForNull
      V putEdgeValue(EndpointPair<N> endpoints, V value);
    
      /**
       * Removes {@code node} if it is present; all edges incident to {@code node} will also be removed.
       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeNode(N node);
    
      /**
       * Removes the edge connecting {@code nodeU} to {@code nodeV}, if it is present.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/node/v1/generated.proto

      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
      // equivalent on every node.
      // For example, a handler called "runc" might specify that the runc OCI
      // runtime (using native Linux containers) will be used to run the containers
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_internal.h

      tensorflow::Graph graph TF_GUARDED_BY(mu);
    
      // Runs shape inference.
      tensorflow::ShapeRefiner refiner TF_GUARDED_BY(mu);
    
      // Maps from name of an operation to the Node* in 'graph'.
      std::unordered_map<tensorflow::string, tensorflow::Node*> name_map
          TF_GUARDED_BY(mu);
    
      // The keys of this map are all the active sessions using this graph. Each
      // value records whether the graph has been mutated since the corresponding
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat May 13 00:49:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformer.java

                            final Node node = nodeList.get(i);
                            strList.add(node.getTextContent());
                        }
                        buf.append(getResultDataBody(entry.getKey(), strList));
                        break;
                    case NODE:
                        final Node node = (Node) xObj.value();
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:40:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/TreeTraverser.java

     * implement it:
     *
     * <pre>{@code
     * // won't work
     * TreeTraverser<NodeType> traverser = node -> node.getChildNodes();
     * }</pre>
     *
     * Instead, you can pass a lambda expression to the {@code using} factory method:
     *
     * <pre>{@code
     * TreeTraverser<NodeType> traverser = TreeTraverser.using(node -> node.getChildNodes());
     * }</pre>
     *
     * @author Louis Wasserman
     * @since 15.0
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // A list of node selector requirements by node's fields.
      // +optional
      repeated NodeSelectorRequirement matchFields = 2;
    }
    
    // NodeSpec describes the attributes that a node is created with.
    message NodeSpec {
      // PodCIDR represents the pod IP range assigned to the node.
      // +optional
      optional string podCIDR = 1;
    
      // podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. .github/actions/notify-translations/app/main.py

        discussions(categoryId: $category_id, first: 100) {
          nodes {
            title
            id
            number
            labels(first: 10) {
              edges {
                node {
                  id
                  name
                }
              }
            }
          }
        }
      }
    }
    """
    
    translation_discussion_query = """
    query Q($after: String, $discussion_number: Int!) {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top