Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesPrecommitPlugin.java

                );
            });
    
            // we also create the updateShas helper task that is associated with dependencyLicenses
            project.getTasks().register("updateShas", UpdateShasTask.class, t -> t.setParentTask(dependencyLicenses));
            return dependencyLicenses;
        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.1K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/UpdateShasTask.java

            setDescription("Updates the sha files for the dependencyLicenses check");
            setOnlyIf(element -> parentTask.get().getLicensesDir() != null);
        }
    
        @TaskAction
        public void updateShas() throws NoSuchAlgorithmException, IOException {
            Set<File> shaFiles = parentTask.get().getShaFiles();
    
            for (File dependency : parentTask.get().getDependencies()) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesTask.java

     *     dependencies = getProject().configurations.compile
     *   }
     * </pre>
     * <p>
     * Every jar must have a {@code .sha1} file in the licenses dir. These can be managed
     * automatically using the {@code updateShas} helper task that is created along
     * with this task. It will add {@code .sha1} files for new jars that are in dependencies
     * and remove old {@code .sha1} files that are no longer needed.
     * <p>
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 26 12:16:14 GMT 2021
    - 14.3K bytes
    - Click Count (0)
  4. 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)
  5. 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