Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for thread_name (0.21 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/ThreadFactoryBuilderTest.java

        final String THREAD_NAME = "ludicrous speed";
        final int THREAD_PRIORITY = 1;
        final boolean THREAD_DAEMON = false;
        ThreadFactory backingThreadFactory =
            new ThreadFactory() {
              @Override
              public Thread newThread(Runnable r) {
                Thread thread = new Thread(r);
                thread.setName(THREAD_NAME);
                thread.setPriority(THREAD_PRIORITY);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

            final List<Map<String, Object>> resList = new ArrayList<>();
            for (Map<String, Object> elem : logList) {
                logger.info("config_id: {}, thread_name: {}", configId, elem.get("thread_name"));
                if (elem.containsKey("thread_name") && elem.get("thread_name").toString().startsWith("Crawler-" + configId.replace('-', '_'))) {
                    resList.add(elem);
                }
            }
            return resList;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/ThreadFactoryBuilderTest.java

        final String THREAD_NAME = "ludicrous speed";
        final int THREAD_PRIORITY = 1;
        final boolean THREAD_DAEMON = false;
        ThreadFactory backingThreadFactory =
            new ThreadFactory() {
              @Override
              public Thread newThread(Runnable r) {
                Thread thread = new Thread(r);
                thread.setName(THREAD_NAME);
                thread.setPriority(THREAD_PRIORITY);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. tensorflow/c/env.cc

      options->stack_size = 0;
      options->guard_size = 0;
      options->numa_node = -1;
    }
    
    TF_Thread* TF_StartThread(const TF_ThreadOptions* options,
                              const char* thread_name, void (*work_func)(void*),
                              void* param) {
      ::tensorflow::ThreadOptions cc_options;
      cc_options.stack_size = options->stack_size;
      cc_options.guard_size = options->guard_size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 7K bytes
    - Viewed (0)
  5. tensorflow/c/env.h

    TF_CAPI_EXPORT extern void TF_DefaultThreadOptions(TF_ThreadOptions* options);
    
    // Returns a new thread that is running work_func and is identified
    // (for debugging/performance-analysis) by thread_name.
    //
    // The given param (which may be null) is passed to work_func when the thread
    // starts. In this way, data may be passed from the thread back to the caller.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  6. src/cmd/trace/jsontrace_test.go

    			checkPlausibleHeapMetrics(t, data)
    			// TODO(mknyszek): Check for plausible thread and goroutine metrics.
    			checkMetaNamesEmitted(t, data, "process_name", []string{"STATS", "PROCS"})
    			checkMetaNamesEmitted(t, data, "thread_name", []string{"GC", "Network", "Timers", "Syscalls", "Proc 0"})
    			checkProcStartStop(t, data)
    			checkSyscalls(t, data)
    			checkNetworkUnblock(t, data)
    			// TODO(mknyszek): Check for flow events.
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/emitter.go

    		}
    		e.threadMeta(format.ProcsSection, id, name, priority)
    	}
    
    	e.c.Flush()
    }
    
    func (e *Emitter) threadMeta(sectionID, tid uint64, name string, priority int) {
    	e.Event(&format.Event{
    		Name:  "thread_name",
    		Phase: "M",
    		PID:   sectionID,
    		TID:   tid,
    		Arg:   &format.NameArg{Name: name},
    	})
    	e.Event(&format.Event{
    		Name:  "thread_sort_index",
    		Phase: "M",
    		PID:   sectionID,
    		TID:   tid,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. 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);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. 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;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. 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 + "]";
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top