Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for executionTime (0.17 sec)

  1. platforms/core-execution/build-cache-base/src/main/java/org/gradle/caching/internal/origin/OriginMetadata.java

        private final HashCode buildCacheKey;
        private final Duration executionTime;
    
        public OriginMetadata(String buildInvocationId, HashCode buildCacheKey, Duration executionTime) {
            this.buildInvocationId = buildInvocationId;
            this.buildCacheKey = buildCacheKey;
            this.executionTime = executionTime;
        }
    
        public String getBuildInvocationId() {
            return buildInvocationId;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerTest.groovy

            controller.store(key, cacheableEntity, snapshots, executionTime)
    
            then:
            noExceptionThrown()
    
            and:
            1 * local.storeLocally(key, _)
        }
    
        def "does not store to local if local push is disabled"() {
            given:
            localPush = false
    
            when:
            controller.store(key, cacheableEntity, snapshots, executionTime)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java

        @Override
        public Integer getExecutionTime() {
            return executionTime;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see
         * org.codelibs.fess.crawler.entity.AccessResult#setExecutionTime(java.lang.Integer)
         */
        @Override
        public void setExecutionTime(final Integer executionTime) {
            this.executionTime = executionTime;
        }
    
        @Override
        public Long getContentLength() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/entity/EsAccessResult.java

                builder.field(MIME_TYPE, mimeType);
            }
            if (createTime != null) {
                builder.field(CREATE_TIME, createTime);
            }
            if (executionTime != null) {
                builder.field(EXECUTION_TIME, executionTime);
            }
            if (contentLength != null) {
                builder.field(CONTENT_LENGTH, contentLength);
            }
            if (lastModified != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java

        public void setSessionId(final String sessionId) {
            this.sessionId = sessionId;
        }
    
        public long getExecutionTime() {
            return executionTime;
        }
    
        public void setExecutionTime(final long executionTime) {
            this.executionTime = executionTime;
        }
    
        public String getRedirectLocation() {
            return redirectLocation;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/OriginFixture.groovy

                                    executionTime: executionTime
                                ]
                            } else {
                                assert executionTime == null
                                assert originBuildCacheKey == null
                            }
                            origins[buildOperation.details.task.getIdentityPath()] = entry
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OriginMetadataSerializer.java

            String buildInvocationId = decoder.readString();
            HashCode buildCacheKey = hashCodeSerializer.read(decoder);
            Duration executionTime = Duration.ofMillis(decoder.readSmallLong());
            return new OriginMetadata(
                buildInvocationId,
                buildCacheKey,
                executionTime
            );
        }
    
        @Override
        public void write(Encoder encoder, OriginMetadata originMetadata) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. fess-crawler-es/src/main/resources/mapping/data.json

          },
          "mimeType": {
            "type": "keyword"
          },
          "sessionId": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          },
          "executionTime": {
            "type": "long"
          },
          "createTime": {
            "type": "long"
          },
          "accessResultData": {
            "properties": {
              "transformerName": {
                "type": "keyword"
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Feb 24 02:06:09 UTC 2019
    - 963 bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

            if (!local.canStore() && !remote.canStore()) {
                return;
            }
            tmp.withTempFile(((BuildCacheKeyInternal) key).getHashCodeInternal(), file -> {
                packExecutor.pack(file, key, entity, snapshots, executionTime);
                remote.maybeStore(key, file);
                local.maybeStore(key, file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/BuildCacheController.java

        Optional<BuildCacheLoadResult> load(BuildCacheKey cacheKey, CacheableEntity cacheableEntity);
    
        void store(BuildCacheKey cacheKey, CacheableEntity entity, Map<String, FileSystemSnapshot> snapshots, Duration executionTime);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top