Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for setTimestamp (0.5 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RemoteSnapshotMetadata.java

            }
    
            for (Artifact artifact : artifacts) {
                String version = artifact.getVersion();
    
                if (version.endsWith(SNAPSHOT)) {
                    String qualifier = snapshot.getTimestamp() + '-' + snapshot.getBuildNumber();
                    version = version.substring(0, version.length() - SNAPSHOT.length()) + qualifier;
                }
    
                SnapshotVersion sv = SnapshotVersion.newBuilder()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcaster.java

            }
        }
    
        private void emit(CategorisedOutputEvent event, OperationIdentifier buildOperationId) {
            progressEventEmitter.emit(
                buildOperationId,
                event.getTimestamp(),
                event
            );
        }
    
        @Override
        public void stop() {
            outputEventListenerManager.removeListener(this);
        }
    
        public void rootBuildOperationStarted() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. internal/s3select/parquet/reader.go

    			value = sql.FormatSQLTimestamp(time.Unix(60*60*24*int64(val), 0).UTC())
    		}
    	case int64:
    		value = val
    		if logicalType := se.GetLogicalType(); logicalType != nil {
    			if ts := logicalType.GetTIMESTAMP(); ts != nil {
    				var duration time.Duration
    				// Only support UTC normalized timestamps.
    				if ts.IsAdjustedToUTC {
    					switch {
    					case ts.Unit.IsSetNANOS():
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 14 13:54:47 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/ProgressStartEventSerializer.java

            if (parentProgressOperationId != null) {
                encoder.writeSmallLong(parentProgressOperationId.getId());
            }
            encoder.writeLong(event.getTimestamp());
            if ((flags & CATEGORY_NAME) != 0) {
                encoder.writeString(event.getCategory());
            }
            encoder.writeString(description);
            if ((flags & LOGGING_HEADER) != 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

        }
    
        @Override
        public void storeStopEvent(final DaemonStopEvent stopEvent) {
            lock.lock();
            try {
                LOGGER.debug("Storing daemon stop event with timestamp {}", stopEvent.getTimestamp().getTime());
                cache.update(new ObjectHolder.UpdateAction<DaemonRegistryContent>() {
                    @Override
                    public DaemonRegistryContent update(DaemonRegistryContent content) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            this.timestamp = timestamp;
        }
    
        public String getId() {
            return id;
        }
    
        public String getPath() {
            return path;
        }
    
        public Date getTimestamp() {
            return timestamp;
        }
    
        public DictionaryFile<T> manager(final DictionaryManager dictionaryManager) {
            this.dictionaryManager = dictionaryManager;
            return this;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top