Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 161 - 170 of 414 for probar (0.03 seconds)

  1. src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java

         * @return the create request configured for reconnection
         */
        protected Smb2CreateRequest createReconnectionRequest(HandleInfo info) {
            // This would need access to the Configuration and proper setup
            // For now, we provide the structure
    
            // Smb2CreateRequest request = new Smb2CreateRequest(config, info.getPath());
            // request.addCreateContext(new DurableHandleReconnect(info.getFileId()));
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 21 04:51:33 GMT 2025
    - 8.5K bytes
    - Click Count (1)
  2. docs/es/docs/advanced/websockets.md

    {* ../../docs_src/websockets/tutorial003_py39.py hl[79:81] *}
    
    Para probarlo:
    
    * Abre la aplicación con varias pestañas del navegador.
    * Escribe mensajes desde ellas.
    * Luego cierra una de las pestañas.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/job/PythonJob.java

    import jakarta.servlet.ServletContext;
    
    /**
     * Job for executing Python scripts within the Fess search engine environment.
     * This job extends ExecJob to provide Python-specific functionality for running
     * Python scripts with proper environment setup and argument passing.
     *
     * <p>Python scripts are executed in the WEB-INF/env/python/resources directory
     * and have access to the Fess system environment including OpenSearch URL and session ID.</p>
     */
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  4. src/main/java/jcifs/smb/JAASAuthenticator.java

    import jcifs.CIFSException;
    
    /**
     * JAAS kerberos authenticator
     *
     * Either configure JAAS for credential caching or reuse a single instance of this authenticator -otherwise you won't
     * get proper ticket caching.
     *
     * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs/Realm.
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 8.3K bytes
    - Click Count (1)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java

            return asJson(new ApiResponse().status(Status.OK).result());
        }
    
        /**
         * Creates an edit body from a file configuration entity for API responses.
         * Processes permissions and virtual hosts for proper display formatting.
         *
         * @param entity the file configuration entity to convert
         * @return edit body containing the entity data
         */
        protected EditBody createEditBody(final FileConfig entity) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  6. src/main/java/jcifs/util/ResourceManager.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Centralized resource management for preventing resource leaks.
     * Tracks all AutoCloseable resources and ensures proper cleanup.
     *
     * Features:
     * - Automatic resource cleanup with weak references
     * - Resource leak detection
     * - Resource usage monitoring
     * - Periodic cleanup of abandoned resources
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  7. docs/changelogs/changelog_1x.md

     * Fix: Respect read timeouts on recycled connections.
     * Fix: Transmit multiple cookie values as a single header with delimiter.
     * Fix: Ensure `null` is never returned from a connection's `getHeaderFields()`.
     * Fix: Persist proper `Content-Encoding` header to cache for GZip responses.
     * Fix: Eliminate rare race condition in SPDY streams that would prevent connection reuse.
     * Fix: Change HTTP date formats to UTC to conform to RFC2616 section 3.3.
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 6.4K bytes
    - Click Count (0)
  8. internal/config/identity/ldap/config.go

    		return val
    	}
    
    	ldapServer := getCfgVal(ServerAddr)
    	if ldapServer == "" {
    		return l, nil
    	}
    
    	// Set ServerName in TLS config for proper certificate validation
    	host, _, err := net.SplitHostPort(ldapServer)
    	if err != nil {
    		host = ldapServer
    	}
    
    	l.LDAP = ldap.Config{
    		ServerAddr:    ldapServer,
    		SRVRecordName: getCfgVal(SRVRecordName),
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Sep 18 11:47:48 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  9. src/test/java/jcifs/internal/dfs/ReferralTest.java

            bb.putShort((short) 10);
            bb.putShort((short) 600);
            bb.putShort((short) 22); // pathOffset
            bb.putShort((short) 60); // altPathOffset - with proper spacing
            bb.putShort((short) 90); // nodeOffset - with proper spacing
    
            bb.position(22);
            bb.put("\\\\server\\\\share".getBytes(StandardCharsets.UTF_16LE));
            bb.putShort((short) 0);
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 22K bytes
    - Click Count (0)
  10. src/main/java/jcifs/util/SecureKeyManager.java

            checkNotClosed();
    
            // Simple KDF implementation (should be replaced with proper KDF like HKDF)
            // This is a placeholder - real implementation should use proper KDF
            byte[] derived = new byte[length];
    
            // Combine inputs
            byte[] labelBytes = label.getBytes(java.nio.charset.StandardCharsets.UTF_8);
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 21.5K bytes
    - Click Count (0)
Back to Top