Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for cpuIDs (0.13 sec)

  1. cmd/kubeadm/app/constants/constants.go

    	CIKubernetesVersionPrefix = "ci/"
    
    	// DefaultAPIServerBindAddress is the default bind address for the API Server
    	DefaultAPIServerBindAddress = "0.0.0.0"
    
    	// ControlPlaneNumCPU is the number of CPUs required on control-plane
    	ControlPlaneNumCPU = 2
    
    	// ControlPlaneMem is the number of megabytes of memory required on the control-plane
    	// Below that amount of RAM running a stable control plane would be difficult.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // allow.  A 0 value means that two numbers must be exactly the same
      // to be considered equal.
      //
      // The maximum error of a single floating-point operation is 0.5
      // units in the last place.  On Intel CPU's, all floating-point
      // calculations are done with 80-bit precision, while double has 64
      // bits.  Therefore, 4 should be enough for ordinary use.
      //
      // See the following article for more details on ULP:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // allow.  A 0 value means that two numbers must be exactly the same
      // to be considered equal.
      //
      // The maximum error of a single floating-point operation is 0.5
      // units in the last place.  On Intel CPU's, all floating-point
      // calculations are done with 80-bit precision, while double has 64
      // bits.  Therefore, 4 should be enough for ordinary use.
      //
      // See the following article for more details on ULP:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

       char *s = s1;
     
       /* Find the end of S1.  */
    -  do
    -    c = *s1++;
    -  while (c != '\0');
    -
    -  /* Make S1 point before next character, so we can increment
    -     it while memory is read (wins on pipelined cpus).  */
    -  s1 -= 2;
    +  s1 += strlen (s1);
     
    -  if (n >= 4)
    -    {
    -      size_t n4 = n >> 2;
    -      do
    -	{
    -	  c = *s2++;
    -	  *++s1 = c;
    -	  if (c == '\0')
    -	    return s;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  5. doc/go_mem.html

    </p>
    
    <p>
    Note that the prohibition on introducing data races
    does not apply if the compiler can prove that the races
    do not affect correct execution on the target platform.
    For example, on essentially all CPUs, it is valid to rewrite
    </p>
    
    <pre>
    n := 0
    for i := 0; i < m; i++ {
    	n += *shared
    }
    </pre>
    
    into:
    
    <pre>
    n := 0
    local := *shared
    for i := 0; i < m; i++ {
    	n += local
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/types.go

    	// This provide a "static" CPU list rather than the "dynamic" list by system-reserved and kube-reserved.
    	// This option overwrites CPUs provided by system-reserved and kube-reserved.
    	ReservedSystemCPUs string
    	// The previous version for which you want to show hidden metrics.
    	// Only the previous minor version is meaningful, other values will not be allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/build.go

    	-n
    		print the commands but do not run them.
    	-p n
    		the number of programs, such as build commands or
    		test binaries, that can be run in parallel.
    		The default is GOMAXPROCS, normally the number of CPUs available.
    	-race
    		enable data race detection.
    		Supported only on linux/amd64, freebsd/amd64, darwin/amd64, darwin/arm64, windows/amd64,
    		linux/ppc64le and linux/arm64 (only for 48-bit VMA).
    	-msan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cri_stats_provider_test.go

    	return m
    }
    
    func TestGetContainerUsageNanoCores(t *testing.T) {
    	var value0 uint64
    	var value1 uint64 = 10000000000
    
    	// Test with a large container of 100+ CPUs
    	var value2 uint64 = 188427786383
    
    	tests := []struct {
    		desc          string
    		cpuUsageCache map[string]*cpuUsageRecord
    		stats         *runtimeapi.ContainerStats
    		expected      *uint64
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - When the kubelet fails to assign CPUs to a Pod because there less available CPUs than the Pod requests, the error message changed from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. .bazelrc

    # gRPC on MacOS requires this #define
    build:macos --copt=-DGRPC_BAZEL_BUILD
    
    # Avoid hitting command line argument limit
    build:macos --features=archive_param_file
    
    # Settings for MacOS on ARM CPUs.
    build:macos_arm64 --cpu=darwin_arm64
    build:macos_arm64 --macos_minimum_os=11.0
    
    # iOS configs for each architecture and the fat binary builds.
    build:ios --apple_platform_type=ios
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top