Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 895 for pcount (0.12 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonExpiration.java

                        break;
                    }
                }
                if (LOGGER.isDebugEnabled() && !toExpire.isEmpty()) {
                    // TODO Only log expired workers count, log their "identity" once they are nameable/describable
                    LOGGER.debug("Worker Daemon(s) expired to free some system memory {}", toExpire.size());
                }
                if (notExpirable > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. tests/count_test.go

    		t.Errorf(fmt.Sprintf("Count should work, but got err %v", err))
    	}
    
    	if count != int64(len(users)) {
    		t.Errorf("Count() method should get correct value, expect: %v, got %v", count, len(users))
    	}
    
    	DB.Model(&User{}).Where("name = ?", user1.Name).Count(&count1).Or("name in ?", []string{user2.Name, user3.Name}).Count(&count2)
    	if count1 != 1 || count2 != 3 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/net/tcpconn_keepalive_conf_posix_test.go

    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     5 * time.Second,
    		Interval: 3 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: -1,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: 3 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     5 * time.Second,
    		Interval: -1,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

        }
    
        def withGoodTestClasses(int count) {
            count.times { index ->
                createGoodTestClass(index)
            }
        }
    
        def withFailingTestClasses(int count) {
            count.times { index ->
                createFailingTestClass(index)
            }
        }
    
        def withSkippedTestClasses(int count) {
            count.times { index ->
                createSkippedTestClass(index)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/runtime/debug.go

    // NumGoroutine returns the number of goroutines that currently exist.
    func NumGoroutine() int {
    	return int(gcount())
    }
    
    //go:linkname debug_modinfo runtime/debug.modinfo
    func debug_modinfo() string {
    	return modinfo
    }
    
    // mayMoreStackPreempt is a maymorestack hook that forces a preemption
    // at every possible cooperative preemption point.
    //
    // This is valuable to apply to the runtime, which can be sensitive to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/internal/bytealg/count_ppc64x.s

    	// R4 = length
    	// R5 = byte to count
    	MTVRD	R5, V1		// move compare byte
    	VSPLTB	$7, V1, V1	// replicate byte across V1
    	BR	countbytebody<>(SB)
    
    // R3: addr of string
    // R4: len of string
    // R5: byte to count
    // V1: byte to count, splatted.
    // On exit:
    // R3: return value
    TEXT countbytebody<>(SB), NOSPLIT|NOFRAME, $0-0
    	MOVD	$0, R18 // byte count
    
    #ifndef GOPPC64_power10
    	RLDIMI	$8, R5, $48, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/ToolingApiLoggingCrossVersionSpec.groovy

            }
            errLogging.count("System.err \u03b1\u03b2") == 1
            errLogging.count("error logging \u03b1\u03b2") == 1
    
            and:
            out.count("lifecycle logging \u03b1\u03b2") == 1
            out.count("warn logging") == 1
            out.count("quiet logging") == 1
            out.count("info") == 0
            out.count("debug") == 0
    
            err.count("warn") == 0
            err.count("quiet") == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. src/net/tcpconn_keepalive_conf_solaris_test.go

    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     20 * time.Second,
    		Interval: 10 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: -1,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: 10 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     20 * time.Second,
    		Interval: -1,
    		Count:    -1,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/KryoBackedDecoder.java

                        if (leftover > 0) {
                            int count = Math.min(leftover, length);
                            leftover -= count;
                            readBytes(buffer, offset, count);
                            return count;
                        }
    
                        int count = readSmallInt();
                        if (count == 0) {
                            // End of stream has been reached
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/net/tcpconn_keepalive_solaris_test.go

    		case cfg.Interval == -1 && cfg.Count > 0:
    			cfg.Interval = defaultTcpKeepAliveAbortThreshold / time.Duration(cfg.Count)
    		case cfg.Count == -1 && cfg.Interval > 0:
    			cfg.Count = int(defaultTcpKeepAliveAbortThreshold / cfg.Interval)
    		case cfg.Interval > 0 && cfg.Count > 0:
    			// TCP_KEEPALIVE_ABORT_THRESHOLD will be recalculated only when both TCP_KEEPINTVL
    			// and TCP_KEEPCNT are set, otherwise it will remain the default value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top