Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,757 for ulong (0.05 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

        private static final String BEGIN_KEY = "begin";
    
        protected Logger statsLogger = null;
    
        protected String loggerName = "fess.log.crawler.stats";
    
        protected long maxCacheSize = 1000;
    
        protected long cacheExpireAfterWrite = 10 * 60 * 1000L;
    
        protected LoadingCache<String, StatsObject> statsCache;
    
        @PostConstruct
        public void init() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebAuthenticationCQ.java

            return this;
        }
    
        public void setCreatedTime_Equal(Long createdTime) {
            setCreatedTime_Term(createdTime, null);
        }
    
        public void setCreatedTime_Equal(Long createdTime, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setCreatedTime_Term(createdTime, opLambda);
        }
    
        public void setCreatedTime_Term(Long createdTime) {
            setCreatedTime_Term(createdTime, null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 95.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/IntsTest.java

            .isNull();
        assertWithMessage("Max long").that(Ints.tryParse(Long.toString(Long.MAX_VALUE))).isNull();
        assertWithMessage("Min long").that(Ints.tryParse(Long.toString(Long.MIN_VALUE))).isNull();
        assertThat(Ints.tryParse("\u0662\u06f3")).isNull();
      }
    
      /**
       * Applies {@link Ints#tryParse(String)} to the given string and asserts that the result is as
       * expected.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationRunner.java

                            assertNotFinished();
                            context.progress(status);
                        }
    
                        @Override
                        public void progress(long progress, long total, String units, String status) {
                            assertNotFinished();
                            context.progress(progress, total, units, status);
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java

        private String url;
    
        private int httpStatusCode;
    
        private String charSet;
    
        private long contentLength;
    
        private String mimeType;
    
        private String method;
    
        private String parentUrl;
    
        private String ruleId;
    
        private String sessionId;
    
        private long executionTime;
    
        private Date lastModified;
    
        private String 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. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/DataTypeInternal.kt

            private
            fun readResolve(): Any = DefaultIntDataType
        }
    
        @Serializable
        @SerialName("long")
        data object DefaultLongDataType : DataType.LongDataType {
            override val constantType: Class<Long> = Long::class.java
            override fun toString(): String = "Long"
            private
            fun readResolve(): Any = DefaultLongDataType
        }
    
        @Serializable
        @SerialName("string")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationProgressEventEmitter.java

            this.clock = clock;
            this.current = current;
            this.listener = listener;
        }
    
        @Override
        public void emit(@Nullable OperationIdentifier operationIdentifier, long timestamp, @Nullable Object details) {
            // Explicit check in case of unsafe CurrentBuildOperationRef usage
            if (operationIdentifier == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 14:53:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //             TreeSubSetTest.suite());
      //     }
    
      public static long SHORT_DELAY_MS;
      public static long SMALL_DELAY_MS;
      public static long MEDIUM_DELAY_MS;
      public static long LONG_DELAY_MS;
    
      /**
       * Returns the shortest timed delay. This could be reimplemented to use for example a Property.
       */
      protected long getShortDelay() {
        return 50;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/BsDataConfig.java

        public void setCreatedBy(String value) {
            registerModifiedProperty("createdBy");
            this.createdBy = value;
        }
    
        public Long getCreatedTime() {
            checkSpecifiedProperty("createdTime");
            return createdTime;
        }
    
        public void setCreatedTime(Long value) {
            registerModifiedProperty("createdTime");
            this.createdTime = value;
        }
    
        public String getDescription() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/DoubleMath.java

            } else {
              return (long) x - 1;
            }
    
          case CEILING:
            if (x <= 0.0 || isMathematicalInteger(x)) {
              return x;
            } else {
              return (long) x + 1;
            }
    
          case DOWN:
            return x;
    
          case UP:
            if (isMathematicalInteger(x)) {
              return x;
            } else {
              return (long) x + (x > 0 ? 1 : -1);
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top