- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 3,480 for tree (0.1 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
/** * construct graph from a "dirty" tree */ public MetadataGraph(MetadataTreeNode tree) throws MetadataResolutionException { this(tree, false, false); } // ------------------------------------------------------------------------ /** * construct graph from a "dirty" tree * * @param tree "dirty" tree root
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.1K bytes - Viewed (0) -
architecture/build-state-model.md
### Build tree state "Build tree" is another name for the build definition. The "build tree state" holds the state for the entire build definition for a single build execution within a session. The build tree state is managed by the `BuildTreeState` class.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed May 22 13:39:49 UTC 2024 - 3.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/TraverserTest.java
/** * A tree-shaped graph that looks as follows (all edges are directed facing downwards): * * <pre>{@code * h * /|\ * / | \ * / | \ * d e g * /|\ | * / | \ | * a b c f * }</pre> */ private static final SuccessorsFunction<Character> TREE =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 47.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/TraverserTest.java
/** * A tree-shaped graph that looks as follows (all edges are directed facing downwards): * * <pre>{@code * h * /|\ * / | \ * / | \ * d e g * /|\ | * / | \ | * a b c f * }</pre> */ private static final SuccessorsFunction<Character> TREE =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 47.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTree.java
this.service.equalsIgnoreCase( service )); } public boolean equals(Object obj) { if (obj instanceof SmbTree) { SmbTree tree = (SmbTree)obj; return matches(tree.share, tree.service); } return false; } void send( ServerMessageBlock request, ServerMessageBlock response ) throws SmbException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
* @param scope the {link PathScope} to collect dependencies, must not be {@code null} * @return the collection result, never {@code null} * @throws DependencyResolverException if the dependency tree could not be built * @throws IllegalArgumentException if an argument is null or invalid * @see #collect(DependencyResolverRequest) */ @Nonnull default DependencyResolverResult collect(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
addr = getAddress(); if (tree != null) { trans = tree.session.transport; } else { trans = SmbTransport.getSmbTransport(addr, url.getPort()); tree = trans.getSmbSession(auth).getSmbTree(share, null); } String hostName = getServerWithDfs(); tree.inDomainDfs = dfs.resolve(hostName, tree.share, null, auth) != null; if (tree.inDomainDfs) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0) -
src/main/java/jcifs/SmbTree.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; /** * Opaque reference to a SMB tree * * @author mbechler * */ public interface SmbTree extends AutoCloseable { /** * * @param type * @return tree instance with the given type */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/TreeConnectResponse.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal; /** * @author mbechler * */ public interface TreeConnectResponse extends CommonServerMessageBlockResponse { /** * @return tree id */ int getTid (); /** * @return service
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java
return null; } MetadataTreeNode tree = null; MetadataTreeNode parent = null; for (ArtifactMetadata md : classpath) { MetadataTreeNode node = new MetadataTreeNode(md, parent, md.isResolved(), md.getArtifactScope()); if (tree == null) { tree = node; } if (parent != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0)