Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for updateShas (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/smb/PreauthIntegrityService.java

            }
    
            public byte[] getCurrentHash() {
                synchronized (hashLock) {
                    return currentHash.clone();
                }
            }
    
            public void updateHash(byte[] newHash) {
                synchronized (hashLock) {
                    if (newHash != null && newHash.length == currentHash.length) {
                        this.currentHash = newHash.clone();
                    }
                }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  2. src/main/webapp/js/chat.js

            };
    
            eventSource.addEventListener('phase', function(e) {
                var data = JSON.parse(e.data);
                if (data.phase) {
                    if (data.status === 'start') {
                        updatePhase(data.phase, 'active');
                        var phaseMessage = config.labels.phases[data.phase] || data.message || 'Processing...';
                        // Replace __keywords__ placeholder with actual keywords
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
Back to Top