Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for GetTIMESTAMP (0.22 sec)

  1. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

            currentTimePeriod = event.getTimestamp();
            for (OperationState state: operationsInProgress.values()) {
                state.maybeFlushOutput(event.getTimestamp());
            }
        }
    
        private void onUngroupedOutput(RenderableOutputEvent event) {
            if (lastRenderedBuildOpId != null) {
                listener.onOutput(spacerLine(event.getTimestamp(), event.getCategory()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. api/maven-api-metadata/src/main/mdo/metadata.mdo

                        }
    
                        // overwrite
                        if ( s.getTimestamp() == null ? snapshot.getTimestamp() != null
                            : !s.getTimestamp().equals( snapshot.getTimestamp() ) )
                        {
                            s.setTimestamp( snapshot.getTimestamp() );
                            changed = true;
                            updateSnapshotVersions = true;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

        }
    
        public void store(final DictionaryFile<? extends DictionaryItem> dictFile, final File file) {
            getDictionaryFile(dictFile.getId()).ifPresent(currentFile -> {
                if (currentFile.getTimestamp().getTime() > dictFile.getTimestamp().getTime()) {
                    throw new DictionaryException(dictFile.getPath() + " was updated.");
                }
    
                // TODO use stream
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java

            String version = null;
            Snapshot snapshot = versioning.getSnapshot();
            if (snapshot != null) {
                if (snapshot.getTimestamp() != null && snapshot.getBuildNumber() > 0) {
                    String newVersion = snapshot.getTimestamp() + "-" + snapshot.getBuildNumber();
                    version = baseVersion.replace(Artifact.SNAPSHOT_VERSION, newVersion);
                } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/StyledTextOutputEvent.java

        public StyledTextOutputEvent withLogLevel(LogLevel logLevel) {
            return new StyledTextOutputEvent(getTimestamp(), getCategory(), logLevel, getBuildOperationId(), spans);
        }
    
        @Override
        public StyledTextOutputEvent withBuildOperationId(OperationIdentifier buildOperationId) {
            return new StyledTextOutputEvent(getTimestamp(), getCategory(), getLogLevel(), buildOperationId, spans);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/UpdateNowEvent.java

    public class UpdateNowEvent extends OutputEvent implements InteractiveEvent {
    
        private final long timestamp;
    
        public UpdateNowEvent(long timestamp) {
            this.timestamp = timestamp;
        }
    
        public long getTimestamp() {
            return timestamp;
        }
    
        @Override
        public String toString() {
            return UpdateNowEvent.class.getSimpleName() + " " + timestamp;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 00:09:24 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStats.java

            long gcCountDelta = last.getCount() - first.getCount();
            // Time interval between the first event in the window and the last
            long timeDelta = TimeUnit.MILLISECONDS.toSeconds(last.getTimestamp() - first.getTimestamp());
            return (double)gcCountDelta / timeDelta;
        }
    
        private static long calculateAverageUsage(Collection<GarbageCollectionEvent> events) {
            long sum = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenUniqueSnapshotModuleSource.java

        private final String timestamp;
    
        MavenUniqueSnapshotModuleSource(String timestamp) {
            this.timestamp = timestamp;
        }
    
        public String getTimestamp() {
            return timestamp;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1011 bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionEvent.java

        public GarbageCollectionEvent(long timestamp, MemoryUsage usage, long count) {
            this.timestamp = timestamp;
            this.usage = usage;
            this.count = count;
        }
    
        public long getTimestamp() {
            return timestamp;
        }
    
        public MemoryUsage getUsage() {
            return usage;
        }
    
        public long getCount() {
            return count;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top