Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for threadName (0.2 sec)

  1. okhttp/src/test/java/okhttp3/SocksProxy.kt

        executor.execute {
          val threadName = "SocksProxy ${serverSocket!!.localPort}"
          Thread.currentThread().name = threadName
          try {
            while (true) {
              val socket = serverSocket!!.accept()
              connectionCount.incrementAndGet()
              service(socket)
            }
          } catch (e: SocketException) {
            logger.info("$threadName done accepting connections: ${e.message}")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFailureUrlCQ.java

        }
    
        public void setThreadName_Equal(String threadName) {
            setThreadName_Term(threadName, null);
        }
    
        public void setThreadName_Equal(String threadName, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setThreadName_Term(threadName, opLambda);
        }
    
        public void setThreadName_Term(String threadName) {
            setThreadName_Term(threadName, null);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 57.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

            this.lastAccessTime = value;
        }
    
        public String getThreadName() {
            checkSpecifiedProperty("threadName");
            return convertEmptyToNull(threadName);
        }
    
        public void setThreadName(String value) {
            registerModifiedProperty("threadName");
            this.threadName = value;
        }
    
        public String getUrl() {
            checkSpecifiedProperty("url");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Required
        public String url;
    
        @Required
        public String threadName;
    
        public String errorName;
    
        public String errorLog;
    
        @Required
        @ValidateTypeFailure
        public String errorCount;
    
        @Required
        public String lastAccessTime;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        private boolean existNextPage;
    
        private List<Integer> pageNumberList;
    
        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String threadName;
    
        public String errorCount;
    
        public String lastAccessTime;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFailureUrlCA.java

        public void setThreadName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setThreadName_Terms("threadName", opLambda, null);
        }
    
        public void setThreadName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFailureUrlCA> aggsLambda) {
            setThreadName_Terms("threadName", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 46.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java

                null, false, false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnThreadName = cci("threadName", "threadName", null, null, String.class, "threadName", null, false,
                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/FailureUrl.java

        public String toString() {
            return "FailureUrl [configId=" + configId + ", errorCount=" + errorCount + ", errorLog=" + errorLog + ", errorName=" + errorName
                    + ", lastAccessTime=" + lastAccessTime + ", threadName=" + threadName + ", url=" + url + ", docMeta=" + docMeta + "]";
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess_config.failure_url/failure_url.json

    {
        "properties": {
          "url": {
            "type": "keyword"
          },
          "threadName": {
            "type": "keyword"
          },
          "errorName": {
            "type": "keyword"
          },
          "errorLog": {
            "type": "keyword"
          },
          "errorCount": {
            "type": "integer"
          },
          "lastAccessTime": {
            "type": "long"
          },
          "configId": {
            "type": "keyword"
          }
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 417 bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/internal/Finalizer.java

        String threadName = Finalizer.class.getName();
        Thread thread = null;
        if (bigThreadConstructor != null) {
          try {
            boolean inheritThreadLocals = false;
            long defaultStackSize = 0;
            thread =
                bigThreadConstructor.newInstance(
                    (ThreadGroup) null, finalizer, threadName, defaultStackSize, inheritThreadLocals);
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Aug 23 12:54:09 GMT 2023
    - 9.4K bytes
    - Viewed (0)
Back to top