Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for rewind (0.04 sec)

  1. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java

            buffer.putInt(fileNameBytes.length);
            buffer.put(fileNameBytes);
    
            // Return only the used portion of the buffer
            byte[] result = new byte[buffer.position()];
            buffer.rewind();
            buffer.get(result);
            return result;
        }
    
        /**
         * Helper method to create a buffer with multiple notifications
         */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/witness/WitnessIntegrationTest.java

            // Test registration
            String regId = mockService.registerWitness("\\\\server\\share", "192.168.1.100", 1);
            assertNotNull(regId);
            assertEquals(1, mockService.getRegistrationCount());
            assertTrue(mockService.hasRegistration(regId));
    
            // Test unregistration
            assertTrue(mockService.unregisterWitness(regId));
            assertEquals(0, mockService.getRegistrationCount());
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

                    final String newId = ComponentUtil.getCrawlingInfoHelper().generateId(entity);
                    final String oldId = (String) entity.get(fessConfig.getIndexFieldId());
                    if (!newId.equals(oldId)) {
                        entity.put(fessConfig.getIndexFieldId(), newId);
                        entity.remove(fessConfig.getIndexFieldVersion());
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                    final String newId = ComponentUtil.getCrawlingInfoHelper().generateId(entity);
                    final String oldId = (String) entity.get(fessConfig.getIndexFieldId());
                    if (!newId.equals(oldId)) {
                        entity.put(fessConfig.getIndexFieldId(), newId);
                        entity.remove(fessConfig.getIndexFieldVersion());
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 22.7K bytes
    - Viewed (1)
  5. docs/SMB3_IMPLEMENTATION_PLAN.md

    3. **Persistent Handle State**: Requires reliable state persistence mechanism
    4. **Backward Compatibility**: Must maintain compatibility with SMB2/SMB1
    
    ### Mitigation Strategies
    1. Implement features behind configuration flags
    2. Provide graceful fallback mechanisms
    3. Extensive testing with various server configurations
    4. Phased rollout with beta testing
    
    ## Resource Requirements
    
    ### Development Team
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  6. LICENSE

    you.  You must make sure that they, too, receive or can get the source
    code.  If you link other code with the library, you must provide
    complete object files to the recipients, so that they can relink them
    with the library after making changes to the library and recompiling
    it.  And you must show them these terms so they know their rights.
    
      We protect your rights with a two-step method: (1) we copyright the
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_pt_BR.properties

    labels.authRealm=Reino
    labels.available=Estado
    labels.createdBy=Criado por
    labels.createdTime=Data de Criação
    labels.depth=Profundidade
    labels.excludedPaths=Caminhos a serem excluídos do rastreamento
    labels.excludedUrls=URLs a serem excluídas do rastreamento
    labels.excludedDocPaths=Caminhos a serem excluídos da pesquisa
    labels.excludedDocUrls=URLs a serem excluídas da pesquisa
    labels.hostname=Nome do host
    labels.id=ID
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 48.7K bytes
    - Viewed (0)
Back to top