- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 114 for establish (0.06 sec)
-
CHANGELOG/CHANGELOG-1.10.md
* Fixes an issue where the resourceVersion of an object in a DELETE watch event was not the resourceVersion of the delete itself, but of the last update to the object. This could disrupt the ability of clients clients to re-establish watches properly. ([#58547](https://github.com/kubernetes/kubernetes/pull/58547), [@liggitt](https://github.com/liggitt))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 341.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancerTest.java
channel1 = new ChannelInfo("channel1", mockTransport1, local, remote1); channel1.setState(ChannelState.ESTABLISHED); channel2 = new ChannelInfo("channel2", mockTransport2, local, remote2); channel2.setState(ChannelState.ESTABLISHED); } @Test void testSingleChannelSelection() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/MultiChannelIntegrationTest.java
channel.setState(ChannelState.ESTABLISHED); // Verify channel properties assertEquals("test-channel", channel.getChannelId()); assertEquals(mockTransport, channel.getTransport()); assertEquals(localNic, channel.getLocalInterface()); assertEquals(remoteNic, channel.getRemoteInterface()); assertEquals(ChannelState.ESTABLISHED, channel.getState());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
} ret.append("]"); return ret.toString(); } /** * Checks whether the security context is established. * @return true if the context is established, false otherwise */ public boolean isEstablished() { return isEstablished; } /** * Gets the server's NTLM challenge bytes.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SSPContext.java
* @throws CIFSException if an error occurs retrieving the signing key */ byte[] getSigningKey() throws CIFSException; /** * Checks whether the security context is established. * @return whether the context is established */ boolean isEstablished(); /** * Initializes the security context with the given token. * @param token the input token bytes
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
VULNERABILITY_REPORT.md
- The project / component that contains the reported vulnerability. - A description of the vulnerability. In particular, the type of the reported vulnerability and how it might be exploited. Alternatively, a well-established vulnerability identifier, e.g. CVE number, can be used instead. Based on the description mentioned above, a MinIO engineer or security team member investigates: - Whether the reported vulnerability exists.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Feb 12 00:51:25 UTC 2022 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/TreeConnectResponse.java
* * @return whether the share is in DFS */ boolean isShareDfs(); /** * Indicates whether the tree connection has been successfully established and has a valid tree ID. * * @return whether the tree id is a valid one */ boolean isValidTid();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComLogoffAndX.java
import jcifs.internal.smb1.AndXServerMessageBlock; import jcifs.internal.smb1.ServerMessageBlock; /** * SMB1 Logoff AndX request message. * * This command is used to terminate a user session that was * previously established with a Session Setup AndX command. */ public class SmbComLogoffAndX extends AndXServerMessageBlock { /** * Creates a new SMB1 logoff request to end a user session. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java
import org.jspecify.annotations.Nullable; /** * To be implemented by test generators of things that can contain elements. Such things include * both {@link Collection} and {@link Map}; since there isn't an established collective noun that * encompasses both of these, 'container' is used. * * @author George van den Driessche */ @GwtCompatible @NullMarked public interface TestContainerGenerator<T, E extends @Nullable Object> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaProvider.java
/** * Connect to a remote RDMA endpoint * * @param hostname remote hostname or IP address * @param port remote port number * @return established RDMA connection * @throws IOException if connection fails */ RdmaConnection connect(String hostname, int port) throws IOException; /** * Register memory region for RDMA operations *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0)