Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 255 for Idle (0.07 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

    function initPanAndZoom(svg, clickHandler) {
      'use strict';
    
      // Current mouse/touch handling mode
      const IDLE = 0;
      const MOUSEPAN = 1;
      const TOUCHPAN = 2;
      const TOUCHZOOM = 3;
      let mode = IDLE;
    
      // State needed to implement zooming.
      let currentScale = 1.0;
      const initWidth = svg.viewBox.baseVal.width;
      const initHeight = svg.viewBox.baseVal.height;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

                    return daemonInfo.getState() == Idle;
                }
            });
        }
    
        @Override
        public List<DaemonInfo> getNotIdle() {
            return getDaemonsMatching(new Spec<DaemonInfo>() {
                @Override
                public boolean isSatisfiedBy(DaemonInfo daemonInfo) {
                    return daemonInfo.getState() != Idle;
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DefaultDaemonContext.java

                File registryDir = new File(decoder.readString());
                Long pid = decoder.readBoolean() ? decoder.readLong() : null;
                Integer idle = decoder.readBoolean() ? decoder.readInt() : null;
                int daemonOptCount = decoder.readInt();
                List<String> daemonOpts = new ArrayList<String>(daemonOptCount);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/net/tcpsock_unix.go

    		return syscall.EINVAL
    	}
    
    	if err := setKeepAlive(c.fd, config.Enable); err != nil {
    		return &OpError{Op: "set", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    	}
    	if err := setKeepAliveIdle(c.fd, config.Idle); err != nil {
    		return &OpError{Op: "set", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    	}
    	if err := setKeepAliveInterval(c.fd, config.Interval); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	// running P (returned by pidleget) may add a timer at any time, so its mask
    	// must be set. An idle P (passed to pidleput) cannot add new timers while
    	// idle, so if it has no timers at that time, its mask may be cleared.
    	//
    	// Thus, we get the following effects on timer-stealing in findrunnable:
    	//
    	//   - Idle Ps with no timers when they go idle are never checked in findrunnable
    	//     (for work- or timer-stealing; this is the ideal case).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonProcessFailureIntegrationTest.groovy

            settingsFile << """
                include '${ANNOTATION_PROCESSOR_PROJECT_NAME}'
            """
            writeAnnotationProcessorProject()
        }
    
        void "daemon is gracefully removed if it is killed while idle in between builds"() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                }
    
                ${dependsOnPidCapturingAnnotationProcessor}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 18:43:14 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

            } catch (UnsupportedOperationException e) {
                return -1;
            }
        }
    
        /**
         * Select idle daemon clients to stop.
         *
         * @param selectionFunction Gets all idle daemon clients, daemons of returned clients are stopped
         */
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

            final Pair<Collection<DaemonInfo>, Collection<DaemonInfo>> idleBusy = partitionByState(daemonRegistry.getAll(), Idle);
            final Collection<DaemonInfo> idleDaemons = idleBusy.getLeft();
            final Collection<DaemonInfo> busyDaemons = idleBusy.getRight();
    
            // Check to see if there are any compatible idle daemons
            DaemonClientConnection connection = connectToIdleDaemon(idleDaemons, constraint);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  9. releasenotes/notes/agent-probe-keepalives.yaml

        now no longer re-use connections for the probe. This behavior was changed to match probing behavior of Kubernetes',
        and may also improve probe reliability for applications using short idle timeouts.
    
        As a result, your application may see more connections (but the same number of HTTP requests) from probes.
        For most applications, this will not be noticeably different.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 07 20:06:21 UTC 2021
    - 963 bytes
    - Viewed (0)
  10. src/runtime/mgcpacer_test.go

    		if !c.NeedIdleMarkWorker() {
    			t.Fatalf("expected to need idle mark workers: i=%d", i)
    		}
    		if !c.AddIdleMarkWorker() {
    			t.Fatalf("expected to be able to add an idle mark worker: i=%d", i)
    		}
    	}
    	if c.NeedIdleMarkWorker() {
    		t.Fatalf("expected to not need idle mark workers")
    	}
    	if c.AddIdleMarkWorker() {
    		t.Fatalf("expected to not be able to add an idle mark worker")
    	}
    	for i := 0; i < workers; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top