- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 214 for node2 (0.06 sec)
-
src/main/java/org/codelibs/fess/util/PrunedTag.java
* The matching is based on tag name, and optionally ID, CSS class, or custom attributes. * * @param node the DOM node to check against this pruned tag configuration * @return true if the node matches this pruned tag configuration, false otherwise */ public boolean matches(final Node node) { if (tag.equalsIgnoreCase(node.getNodeName())) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
*/ public static final String SMBSERVER_NAME = "*SMBSERVER "; /** * A B node only broadcasts name queries. This is the default if a * nameserver such as WINS or Samba is not specified. */ public static final int B_NODE = 0; /** * A Point-to-Point node, or P node, unicasts queries to a nameserver * only. Natrually the <code>jcifs.smb1.netbios.nameserver</code> property must
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
/** * Shortcut for {@code getService(DependencyResolver.class).flatten(...)}. * * @param node node for which to get a flattened list * @param scope build path scope (main compile, test compile, etc.) of desired nodes * @return flattened list of node with the given build path scope * @throws org.apache.maven.api.services.DependencyResolverException if the dependency flattening failed *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UUID.java
this.clock_seq_low = uuid.clock_seq_low; this.node = new byte[6]; this.node[0] = uuid.node[0]; this.node[1] = uuid.node[1]; this.node[2] = uuid.node[2]; this.node[3] = uuid.node[3]; this.node[4] = uuid.node[4]; this.node[5] = uuid.node[5]; } /** * Construct a UUID from string * * @param str
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
clock_seq_hi_and_reserved = uuid.clock_seq_hi_and_reserved; clock_seq_low = uuid.clock_seq_low; node = new byte[6]; node[0] = uuid.node[0]; node[1] = uuid.node[1]; node[2] = uuid.node[2]; node[3] = uuid.node[3]; node[4] = uuid.node[4]; node[5] = uuid.node[5]; } /** * Constructs a UUID from a string representation *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UUIDTest.java
// Node array will be partially filled assertEquals((byte) 0xAA, uuid.node[0]); assertEquals((byte) 0xBB, uuid.node[1]); assertEquals((byte) 0xCC, uuid.node[2]); assertEquals((byte) 0xDD, uuid.node[3]); assertEquals((byte) 0xEE, uuid.node[4]); assertEquals((byte) 0x00, uuid.node[5]); // Missing data defaults to 0 }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/ImmutableValueGraphTest.java
@Test public void immutableValueGraphBuilder_addNode() { ImmutableValueGraph<String, Integer> graph = ValueGraphBuilder.directed().<String, Integer>immutable().addNode("A").build(); assertThat(graph.nodes()).containsExactly("A"); assertThat(graph.edges()).isEmpty(); } @Test public void immutableValueGraphBuilder_putEdgeFromNodes() { ImmutableValueGraph<String, Integer> graph =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 6.5K bytes - Viewed (0) -
guava/src/com/google/common/graph/SuccessorsFunction.java
* @author Joshua O'Madadhain * @author Jens Nyman * @param <N> Node parameter type * @since 23.0 */ @Beta @DoNotMock("Implement with a lambda, or use GraphBuilder to build a Graph with the desired edges") public interface SuccessorsFunction<N> { /** * Returns all nodes in this graph adjacent to {@code node} which can be reached by traversing * {@code node}'s outgoing edges in the direction (if any) of the edge. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
bb.position(54); String altPath = "\\\\alt\\path"; bb.put(altPath.getBytes(StandardCharsets.UTF_16LE)); bb.putShort((short) 0); // Node string at offset 76 bb.position(76); String node = "NODE01"; bb.put(node.getBytes(StandardCharsets.UTF_16LE)); bb.putShort((short) 0); // Decode int decodedSize = referral.decode(testBuffer, 0, testBuffer.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
} /** * Get the source node for move operations * * @return source node name */ public String getSourceNode() { return sourceNode; } /** * Sets the source node for move operations. * * @param sourceNode the name of the source node in a share move operation */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0)