Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,094 for configurator (0.22 sec)

  1. src/test/java/jcifs/internal/smb1/com/SmbComLockingAndXTest.java

         * Test that the wire-format of the parameters is produced
         * correctly when all fields are set to typical values.
         */
        @Test
        void happyPathParameterEncoding() throws Exception {
            Configuration cfg = mock(Configuration.class);
            SmbComLockingAndX cmd = new SmbComLockingAndX(cfg);
            // set fields via reflection
            setField(cmd, "fid", 0x1234);
            setField(cmd, "typeOfLock", (byte) 0x05);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. api/maven-api-settings/pom.xml

          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>**/package-info.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <reporting>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. api/maven-api-toolchain/pom.xml

          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>**/package-info.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <reporting>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/BufferCacheImpl.java

    import jcifs.BufferCache;
    import jcifs.Configuration;
    
    /**
     * Cache for reusable byte buffers
     *
     *
     * <p>This class is intended for internal use.</p>
     */
    public class BufferCacheImpl implements BufferCache {
    
        private final Object[] cache;
        private final int bufferSize;
        private int freeBuffers = 0;
    
        /**
         * Constructs a buffer cache using configuration settings.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java

        private final byte[] outputBuffer;
    
        /**
         * Constructs a TransCallNamedPipeResponse with the specified configuration and output buffer.
         *
         * @param config the SMB configuration
         * @param inB the buffer to receive response data from the named pipe
         */
        public TransCallNamedPipeResponse(final Configuration config, final byte[] inB) {
            super(config);
            this.outputBuffer = inB;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3K bytes
    - Viewed (0)
  6. docs/de/docs/how-to/general.md

    ## *Pfadoperation* in der Dokumentation deprecaten – OpenAPI
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Mar 30 18:18:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/JAASAuthenticatorTest.java

    @ExtendWith(MockitoExtension.class)
    public class JAASAuthenticatorTest {
    
        enum SubjectVariant {
            DEFAULT_NO_PS, // configuration null, no preset Subject
            DEFAULT_WITH_PS, // configuration null, but super.getSubject() returns non-null
            WITH_CONFIG // configuration provided via StaticJAASConfiguration
        }
    
        private JAASAuthenticator buildAuthenticator(SubjectVariant variant) {
            switch (variant) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java

            assertArrayEquals(rawData, avSingleHost.getRaw());
        }
    
        /**
         * Test constructor AvSingleHost(Configuration cfg).
         * Should use the machine ID from the configuration.
         */
        @Test
        void testAvSingleHostConfigurationConstructor() {
            Configuration mockConfig = mock(Configuration.class);
            byte[] expectedMachineId = new byte[32];
            expectedMachineId[0] = 0x0A;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

         * @param config the configuration
         */
        protected AndXServerMessageBlock(final Configuration config) {
            this(config, null);
        }
    
        /**
         * Constructs an AndX message block with configuration and chained command
         * @param config the configuration
         * @param andx the chained command
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/create/Smb2CloseRequest.java

        /**
         * Constructs a close request with file ID and name
         *
         * @param config
         *            The configuration to use
         * @param fileId
         *            The file ID to close
         * @param fileName
         *            The name of the file being closed
         */
        public Smb2CloseRequest(final Configuration config, final byte[] fileId, final String fileName) {
            super(config, SMB2_CLOSE);
            this.fileId = fileId;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top