Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,372 for ulong (0.22 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsDuplicateHost.java

        /** createdTime */
        protected Long createdTime;
    
        /** duplicateHostName */
        protected String duplicateHostName;
    
        /** regularName */
        protected String regularName;
    
        /** sortOrder */
        protected Integer sortOrder;
    
        /** updatedBy */
        protected String updatedBy;
    
        /** updatedTime */
        protected Long updatedTime;
    
        // [Referrers] *comment only
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfo.java

        public Long getCreatedTime() {
            checkSpecifiedProperty("createdTime");
            return createdTime;
        }
    
        public void setCreatedTime(Long value) {
            registerModifiedProperty("createdTime");
            this.createdTime = value;
        }
    
        public Long getExpiredTime() {
            checkSpecifiedProperty("expiredTime");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt

        }
    
      fun throttleBody(
        bytesPerPeriod: Long,
        period: Long,
        unit: TimeUnit,
      ) = apply {
        throttleBytesPerPeriod = bytesPerPeriod
        throttlePeriodAmount = period
        throttlePeriodUnit = unit
      }
    
      fun getThrottlePeriod(unit: TimeUnit): Long = unit.convert(throttlePeriodAmount, throttlePeriodUnit)
    
      fun setBodyDelay(
        delay: Long,
        unit: TimeUnit,
      ) = apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/cache/internal/locklistener/NoOpFileLockContentionHandler.java

        @Override
        public void start(long lockId, Consumer<FileLockReleasedSignal> whenContended) {}
    
        @Override
        public void stop(long lockId) {}
    
        @Override
        public int reservePort() {
            return -1;
        }
    
        @Override
        public boolean maybePingOwner(int port, long lockId, String displayName, long timeElapsed, FileLockReleasedSignal signal) {
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java

        String getParentUrl();
    
        void setParentUrl(String parentUrl);
    
        Integer getDepth();
    
        void setDepth(Integer depth);
    
        Long getLastModified();
    
        void setLastModified(Long lastModified);
    
        Long getCreateTime();
    
        void setCreateTime(Long createTime);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/BsElevateWord.java

        /** createdTime */
        protected Long createdTime;
    
        /** permissions */
        protected String[] permissions;
    
        /** reading */
        protected String reading;
    
        /** suggestWord */
        protected String suggestWord;
    
        /** updatedBy */
        protected String updatedBy;
    
        /** updatedTime */
        protected Long updatedTime;
    
        // [Referrers] *comment only
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/DefaultCountdownTimer.java

     */
    
    package org.gradle.internal.time;
    
    import java.util.concurrent.TimeUnit;
    
    class DefaultCountdownTimer extends DefaultTimer implements CountdownTimer {
    
        private final long timeoutMillis;
    
        DefaultCountdownTimer(TimeSource timeSource, long timeout, TimeUnit unit) {
            super(timeSource);
            if (timeout <= 0) {
                throw new IllegalArgumentException();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestCompleteEvent.java

    @UsedByScanPlugin
    public class TestCompleteEvent {
        private final long endTime;
        private final TestResult.ResultType resultType;
    
        @UsedByScanPlugin("test-distribution")
        public TestCompleteEvent(long endTime) {
            this(endTime, null);
        }
    
        @UsedByScanPlugin("test-distribution")
        public TestCompleteEvent(long endTime, TestResult.ResultType resultType) {
            this.endTime = endTime;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/DefaultTimer.java

        private final TimeSource timeSource;
        private long startTime;
    
        DefaultTimer(TimeSource timeSource) {
            this.timeSource = timeSource;
            reset();
        }
    
        @Override
        public String getElapsed() {
            long elapsedMillis = getElapsedMillis();
            return TimeFormatting.formatDurationVerbose(elapsedMillis);
        }
    
        @Override
        public long getElapsedMillis() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/cache/FileAccessTimeJournalFixture.groovy

        }
    
        void writeLastFileAccessTimeToJournal(File file, long millis) {
            def cache = new BTreePersistentIndexedCache<File, Long>(journal, FILE_SERIALIZER, LONG_SERIALIZER)
            try {
                cache.put(file, millis)
            } finally {
                cache.close()
            }
        }
    
        void writeJournalInceptionTimestamp(long millis) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top