Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for cpuinit (0.17 sec)

  1. cluster/gce/manifests/etcd.manifest

        {{security_context}}
        "image": "{{ pillar.get('etcd_docker_repository', 'registry.k8s.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.5.14-0') }}",
        "resources": {
          "requests": {
            "cpu": {{ cpulimit }}
          }
        },
        "command": [
                  "/bin/sh",
                  "-c",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_test.go

    		4030, 4031, 4032, 4033, 4036, 4040, 4048, 4096, 5000, 10000}
    	for _, length := range lengths {
    		p := make([]byte, length)
    		_, _ = rand.Read(p)
    		crcInit := uint32(rand.Int63())
    		crc1 := crcFunc1(crcInit, p)
    		crc2 := crcFunc2(crcInit, p)
    		if crc1 != crc2 {
    			t.Errorf("mismatch: 0x%x vs 0x%x (buffer length %d)", crc1, crc2, length)
    		}
    	}
    }
    
    // TestSimple tests the simple generic algorithm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    		//
    		// But on older kernels, such as Linux 4.4.180 as used on many Synology
    		// devices, calling readARM64Registers (specifically getisar0) will
    		// cause a SIGILL and we'll die. So for older kernels, parse /proc/cpuinfo
    		// instead.
    		//
    		// See golang/go#57336.
    		if linuxKernelCanEmulateCPUID() {
    			readARM64Registers()
    		} else {
    			readLinuxProcCPUInfo()
    		}
    		return
    	}
    
    	// HWCAP feature bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    validateAnnotatedMet(org.junit.runners.model.FrameworkMethod); static void <clinit>(); } org/junit/validator/PublicClassValidator.class package org.junit.validator; public synchronized class PublicClassValidator implements TestClassValidator { private static final java.util.List NO_VALIDATION_ERRORS; public void PublicClassValidator(); public java.util.List validateTestClass(org.junit.runners.model.TestClass); static void <clinit>(); } org/junit/validator/TestClassValidator.class package org.junit.validator;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        public final enum static field SOUTH: Direction
        public final enum static field WEST: Direction
        private synthetic final static method $values(): Direction[]
        static method <clinit>(): void
        private method <init>(p0: java.lang.String, p1: int): void
        public static method getEntries(): kotlin.enums.EnumEntries
        public static method valueOf(p0: java.lang.String): Direction
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/helper.go

    		Time:                 metav1.NewTime(cstat.Timestamp),
    		UsageNanoCores:       uint64Ptr(0),
    		UsageCoreNanoSeconds: uint64Ptr(0),
    	}
    	if info.Spec.HasCpu {
    		if cstat.CpuInst != nil {
    			cpuStats.UsageNanoCores = &cstat.CpuInst.Usage.Total
    		}
    		if cstat.Cpu != nil {
    			cpuStats.UsageCoreNanoSeconds = &cstat.Cpu.Usage.Total
    		}
    	}
    	if info.Spec.HasMemory && cstat.Memory != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/workcmd/work.go

    modules.
    
    To determine whether the go command is operating in workspace mode, use
    the "go env GOWORK" command. This will specify the workspace file being
    used.
    `,
    
    	Commands: []*base.Command{
    		cmdEdit,
    		cmdInit,
    		cmdSync,
    		cmdUse,
    		cmdVendor,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public byte[] decode(byte[]); public static byte[] encodeBase64(byte[], boolean); public static byte[] decodeBase64(byte[]); static byte[] discardWhitespace(byte[]); static byte[] discardNonBase64(byte[]); public byte[] encode(byte[]); static void <clinit>(); } org/codehaus/plexus/util/CachedMap.class package org.codehaus.plexus.util; public final synchronized class CachedMap implements java.util.Map { private final FastMap _backingFastMap; private final java.util.Map _backingMap; private final FastMap...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    								kubeContainerID: kcs.ID,
    								desiredContainerResources: containerResources{
    									memoryLimit: mem100M.Value(),
    									cpuLimit:    cpu100m.MilliValue(),
    								},
    								currentContainerResources: &containerResources{
    									memoryLimit: mem200M.Value(),
    									cpuLimit:    cpu200m.MilliValue(),
    								},
    							},
    						},
    						v1.ResourceCPU: {
    							{
    								apiContainerIdx: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/NativeLanguageSamplesIntegrationTest.groovy

        @Rule public final Sample windowsResources = sample(testDirProvider, 'windows-resources')
        @Rule public final Sample idl = sample(testDirProvider, 'idl')
        @Rule public final Sample cunit = sample(testDirProvider, 'cunit')
        @Rule public final Sample pch = sample(testDirProvider, 'pre-compiled-headers')
    
        private static Sample sample(TestDirectoryProvider testDirectoryProvider, String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top