- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 875 for confirm (0.04 sec)
-
CHANGELOG/CHANGELOG-1.28.md
- `kubeadm`: added a new "kubeadm config validate" command that can be used to validate any input config file. Use the `--config` flag to pass a config file to it. See the command `--help` screen for more information. As a result of adding this new command, enhance the validation capabilities of the existing "kubeadm
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Oct 23 20:13:20 UTC 2024 - 456.9K bytes - Viewed (1) -
src/test/java/jcifs/smb/SmbTreeHandleImplTest.java
when(ctx.getConfig()).thenReturn(config); when(config.getCapabilities()).thenReturn(0); when(config.getFlags2()).thenReturn(0); when(config.getMaxMpxCount()).thenReturn(1); when(config.getSendBufferSize()).thenReturn(4096); when(config.getReceiveBufferSize()).thenReturn(4096); when(config.getTransactionBufferSize()).thenReturn(4096);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
List<FileConfig> configs = new ArrayList<>(); FileConfig config = new FileConfig(); // Set required properties to prevent skip config.setPaths("/tmp/test"); configs.add(config); return configs; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
Configuration config1 = context.getConfig(); Configuration config2 = context.getConfig(); DfsResolver dfs1 = context.getDfs(); DfsResolver dfs2 = context.getDfs(); BufferCache cache1 = context.getBufferCache(); BufferCache cache2 = context.getBufferCache(); // Then - should be same instances assertSame(config1, config2, "Configuration should be consistent");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponse.java
/** * SMB2 Tree Disconnect response message. * * This response confirms that the tree connection * has been successfully disconnected. * * @author mbechler */ public class Smb2TreeDisconnectResponse extends ServerMessageBlock2Response { /** * Creates a new SMB2 tree disconnect response. * * @param config the CIFS configuration */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
private byte[] blob; /** * Constructs a SMB2 session setup response with the specified configuration * * @param config * the configuration to use for this response */ public Smb2SessionSetupResponse(final Configuration config) { super(config); } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb2/info/Smb2SetInfoResponseTest.java
void testWriteBytesWireFormatVariousConfigurations() { // Test with different buffer sizes and indices int[][] configs = { { 100, 0 }, { 1024, 50 }, { 4096, 2000 }, { 65536, 32768 } }; for (int[] config : configs) { byte[] dst = new byte[config[0]]; int dstIndex = config[1]; int result = response.writeBytesWireFormat(dst, dstIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/EditForm.java
/** * Form class for editing data crawling configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing data config entries, * including tracking information for optimistic locking and audit trails. * Data configs define how to crawl and extract data from databases, CSV files, and other data sources. * */ public class EditForm extends CreateForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
// Test provider creation with various configs public void test_providerCreationVariousConfigs() { // Test with multiple different configs FessConfig[] configs = new FessConfig[5]; FessTimeResourceProvider[] providers = new FessTimeResourceProvider[5]; for (int i = 0; i < configs.length; i++) { final int value = i * 100; configs[i] = new FessConfig.SimpleImpl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EchoResponse.java
* SMB2 Echo response message. * * This response confirms that the server is still active * and the connection is working properly. * * @author mbechler */ public class Smb2EchoResponse extends ServerMessageBlock2Response { /** * Constructs an SMB2 echo response * @param config the client configuration */ public Smb2EchoResponse(final Configuration config) { super(config); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0)