Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 558 for nThreads (0.18 sec)

  1. mockwebserver/src/main/kotlin/mockwebserver3/QueueDispatcher.kt

          return failFastResponse!!
        }
    
        val result = responseQueue.take()
    
        // If take() returned because we're shutting down, then enqueue another dead letter so that any
        // other threads waiting on take() will also return.
        if (result == DEAD_LETTER) responseQueue.add(DEAD_LETTER)
    
        return result
      }
    
      override fun peek(): MockResponse {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. releasenotes/notes/18152.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 18152
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 28 19:22:55 UTC 2022
    - 227 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java

            final TimeValue interval = TimeValue.parseTimeValue(fessConfig.getCrawlerHotthreadInterval(), "crawler.hotthread.interval");
            final int threads = fessConfig.getCrawlerHotthreadThreadsAsInteger();
            final String timeout = fessConfig.getCrawlerHotthreadTimeout();
            final String type = fessConfig.getCrawlerHotthreadType();
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdExtension.java

        private final Property<Integer> threads;
    
        public PmdExtension(Project project) {
            this.project = project;
            this.rulesMinimumPriority = project.getObjects().property(Integer.class);
            this.incrementalAnalysis = project.getObjects().property(Boolean.class);
            this.maxFailures = project.getObjects().property(Integer.class);
            this.threads = project.getObjects().property(Integer.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockCoordinationService.java

         */
        @Nullable
        ResourceLockState getCurrent();
    
        /**
         * Attempts to atomically change the state of resource locks.  Only one thread can alter the resource lock
         * states at one time.  Other threads will block until the resource lock state is free.  The provided
         * {@link InternalTransformer} should return a {@link org.gradle.internal.resources.ResourceLockState.Disposition}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/pidlimit/pidlimit_linux.go

    	rlimit := &statsapi.RlimitStats{}
    
    	taskMax := int64(-1)
    	// Calculate the minimum of kernel.pid_max and kernel.threads-max as they both specify the
    	// system-wide limit on the number of tasks.
    	for _, file := range []string{"/proc/sys/kernel/pid_max", "/proc/sys/kernel/threads-max"} {
    		if content, err := os.ReadFile(file); err == nil {
    			if limit, err := strconv.ParseInt(string(content[:len(content)-1]), 10, 64); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:24:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. tensorflow/cc/training/queue_runner.h

      /// thread when coordinator is set. If there is no coordinator it should be
      /// called before calling Join.
      void Stop(Session* sess);
    
      /// Joins all the threads. Returns okay if all threads run successfully;
      /// otherwise returns the first captured failure status.
      Status Join() final;
    
      /// Returns the latest status.
      Status GetStatus();
    
      // Returns the stored cost model.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/LongAdder.java

     * (method {@link #add}) are contended across threads, the set of variables may grow dynamically to
     * reduce contention. Method {@link #sum} (or, equivalently, {@link #longValue}) returns the current
     * total combined across the variables maintaining the sum.
     *
     * <p>This class is usually preferable to {@link AtomicLong} when multiple threads update a common
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/LongAdder.java

     * (method {@link #add}) are contended across threads, the set of variables may grow dynamically to
     * reduce contention. Method {@link #sum} (or, equivalently, {@link #longValue}) returns the current
     * total combined across the variables maintaining the sum.
     *
     * <p>This class is usually preferable to {@link AtomicLong} when multiple threads update a common
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  10. releasenotes/notes/deferred_cluster_creation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Added** an experimental feature to enable cluster creation on worker threads inline during requests.
      This will save memory and CPU cycles in cases where there are lots of inactive clusters and > 1 worker thread.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 402 bytes
    - Viewed (0)
Back to top