Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for max8 (0.14 sec)

  1. src/runtime/proc.go

    // sched.lock must be held.
    func globrunqget(pp *p, max int32) *g {
    	assertLockHeld(&sched.lock)
    
    	if sched.runqsize == 0 {
    		return nil
    	}
    
    	n := sched.runqsize/gomaxprocs + 1
    	if n > sched.runqsize {
    		n = sched.runqsize
    	}
    	if max > 0 && n > max {
    		n = max
    	}
    	if n > int32(len(pp.runq))/2 {
    		n = int32(len(pp.runq)) / 2
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    			},
    			Addresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "127.0.0.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			// images will be sorted from max to min in node status.
    			Images: []v1.ContainerImage{
    				{
    					Names:     []string{"registry.k8s.io:v1", "registry.k8s.io:v2"},
    					SizeBytes: 123,
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    
      echo "setting docker logging options"
      # Configure docker logging
      addockeropt "\"log-driver\": \"${DOCKER_LOG_DRIVER:-json-file}\","
      addockeropt "\"log-opts\": {
          \"max-size\": \"${DOCKER_LOG_MAX_SIZE:-10m}\",
          \"max-file\": \"${DOCKER_LOG_MAX_FILE:-5}\"
        }"
      cat <<EOF >>/etc/docker/daemon.json
    }
    EOF
      echo "DOCKER_OPTS=\"${docker_opts}${EXTRA_DOCKER_OPTS:-}\"" > /etc/default/docker
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

          echo "+++ ${basename_tar} uploaded earlier, cloud and local file md5 match (md5 = ${local_tar_md5})"
          return 0
        fi
      fi
    
      echo "${hash}" > "${tar}.sha512"
      gsutil -m -q -h "Cache-Control:private, max-age=0" cp "${tar}" "${tar}.sha512" "${staging_path}"
      gsutil -m acl ch -g all:R "${gs_url}" "${gs_url}.sha512" >/dev/null 2>&1 || true
      echo "+++ ${basename_tar} uploaded (sha512 = ${hash})"
    }
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	maxIdleClosed     int64 // Total number of connections closed due to idle count.
    	maxIdleTimeClosed int64 // Total number of connections closed due to idle time.
    	maxLifetimeClosed int64 // Total number of connections closed due to max connection lifetime limit.
    
    	stop func() // stop cancels the connection opener.
    }
    
    // connReuseStrategy determines how (*DB).conn returns database connections.
    type connReuseStrategy uint8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/LocalCache.java

          ++segmentCapacity;
        }
    
        int segmentSize = 1;
        while (segmentSize < segmentCapacity) {
          segmentSize <<= 1;
        }
    
        if (evictsBySize()) {
          // Ensure sum of segment max weights = overall max weights
          long maxSegmentWeight = maxWeight / segmentCount + 1;
          long remainder = maxWeight % segmentCount;
          for (int i = 0; i < this.segments.length; ++i) {
            if (i == remainder) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

    class ArtifactTransformCachingIntegrationTest extends AbstractHttpDependencyResolutionTest implements FileAccessTimeJournalFixture, ValidationMessageChecker, GradleUserHomeCleanupFixture {
        static final int HALF_DEFAULT_MAX_AGE_IN_DAYS = Math.max(1, DEFAULT_MAX_AGE_IN_DAYS_FOR_CREATED_CACHE_ENTRIES / 2 as int)
    
        @Rule
        BlockingHttpServer blockingHttpServer = new BlockingHttpServer()
    
        def setup() {
            expectReindentedValidationMessage()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    					Namespace: "testing",
    					Name:      "service",
    				},
    				Port: "https",
    			},
    			protocol: "tcp",
    			expected: "LZBRENCP-testing/service/tcp/https",
    		},
    		{
    			name: "max length",
    			spn: proxy.ServicePortName{
    				NamespacedName: types.NamespacedName{
    					Namespace: "very-long-namespace-name-abcdefghijklmnopqrstuvwxyz0123456789xx",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "optionalOldSelf": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top