Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 130 for npidle (0.19 sec)

  1. src/net/tcpsock_windows.go

    		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 {
    			return &OpError{Op: "set", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    		}
    	} else if err := setKeepAliveIdleAndInterval(c.fd, config.Idle, config.Interval); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonLifecycleTest.groovy

                    doFirst {
                        def all = services.get(WorkerDaemonFactory.class).clientsManager.allClients.size()
                        def idle = services.get(WorkerDaemonFactory.class).clientsManager.idleClients.size()
                        println "Existing worker daemons: \${idle} idle out of \${all} total"
                    }
                }
            """
    
            when:
            succeeds "runInWorker1"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkQueue.java

         *
         * Execution of the work may begin immediately.
         *
         * Work submitted using {@link WorkerExecutor#processIsolation()} will execute in an idle daemon that meets the requirements set
         * in the {@link ProcessWorkerSpec}.  If no idle daemons are available, a new daemon will be started.  Any errors
         * will be thrown from {@link #await()} or from the surrounding task action if {@link #await()} is not used.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleEncodingSpec.groovy

            }
    
            then:
            completeBuild()
    
            then:
            idle()
    
            when:
            startBuild(null, "UTF-8")
            waitForLifecycleLogToContain(1, "1 incompatible")
            waitForBuildToWait()
    
            then:
            state 1, 1
    
            then:
            completeBuild(1)
    
            then:
            idle 2
            daemonContext(1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. releasenotes/notes/set-tcp-idle-timeout-in-http-clusters.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 03:37:28 UTC 2024
    - 168 bytes
    - Viewed (0)
  6. src/html/entity.go

    		"NotTildeFullEqual;":               '\U00002247',
    		"NotTildeTilde;":                   '\U00002249',
    		"NotVerticalBar;":                  '\U00002224',
    		"Nscr;":                            '\U0001D4A9',
    		"Ntilde;":                          '\U000000D1',
    		"Nu;":                              '\U0000039D',
    		"OElig;":                           '\U00000152',
    		"Oacute;":                          '\U000000D3',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  7. src/runtime/crash_test.go

    	}
    	t.Logf("stderr output:\n%s", errOut.String())
    	needle := "yzzyx\n"
    	if n := strings.Count(errOut.String(), needle); n != 1 {
    		t.Fatalf("did not find expected panic message %q\n(exit status %v)", needle, err)
    	}
    }
    
    // Test that panic message is not clobbered.
    // See issue 30150.
    func TestDoublePanic(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "cave",
            "floor",
            "shelf",
            "snakes",
            "ants",
            "comparison",
            "quicksand",
            "eyes",
            "thumb",
            "church",
            "needle",
            "celery",
            "competition",
            "metal",
            "box",
            "industry",
            "brother",
            "deer",
            "waves",
            "advice",
            "acoustics",
            "nut",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/DispatcherTest.kt

      }
    
      @Test
      fun idleCallbackInvokedWhenIdle() {
        val idle = AtomicBoolean()
        dispatcher.idleCallback = Runnable { idle.set(true) }
        client.newCall(newRequest("http://a/1")).enqueue(callback)
        client.newCall(newRequest("http://a/2")).enqueue(callback)
        executor.finishJob("http://a/1")
        assertThat(idle.get()).isFalse()
        val ready = CountDownLatch(1)
        val proceed = CountDownLatch(1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/ClientShutdownCrossVersionSpec.groovy

            given:
            toolingApi.close()
    
            when:
            toolingApi.withConnection {}
    
            then:
            thrown(IllegalStateException)
        }
    
        def "cleans up idle daemons when tooling API session is shutdown"() {
            withConnection { connection ->
                connection.model(GradleBuild).setJvmArguments(buildJvmArguments).get()
            }
            toolingApi.daemons.daemon.assertIdle()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top