Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for cpuinit (0.13 sec)

  1. src/runtime/proc.go

    	// 16 seems to provide enough amortization, but other than that it's mostly arbitrary number.
    	_GoidCacheBatch = 16
    )
    
    // cpuinit sets up CPU feature flags and calls internal/cpu.Initialize. env should be the complete
    // value of the GODEBUG environment variable.
    func cpuinit(env string) {
    	switch GOOS {
    	case "aix", "darwin", "ios", "dragonfly", "freebsd", "netbsd", "openbsd", "illumos", "solaris", "linux":
    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. 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)
  3. cmd/admin-handlers.go

    			anonymizeAddr(&localCPUInfo)
    			healthInfo.Sys.CPUInfo = append(healthInfo.Sys.CPUInfo, localCPUInfo)
    
    			peerCPUInfo := globalNotificationSys.GetCPUs(healthCtx)
    			for _, cpuInfo := range peerCPUInfo {
    				anonymizeAddr(&cpuInfo)
    				healthInfo.Sys.CPUInfo = append(healthInfo.Sys.CPUInfo, cpuInfo)
    			}
    
    			partialWrite(healthInfo)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    		}
    		// Convert Limits
    		if container.Resources.Limits != nil {
    			limits = make(v1.ResourceList)
    			if cStatus.Resources != nil && cStatus.Resources.CPULimit != nil {
    				limits[v1.ResourceCPU] = cStatus.Resources.CPULimit.DeepCopy()
    			} else {
    				determineResource(v1.ResourceCPU, container.Resources.Limits, oldStatus.Resources.Limits, limits)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

    # copy the file to the manifest dir
    # $1: value for variable 'suffix'
    # $2: value for variable 'port'
    # $3: value for variable 'server_port'
    # $4: value for variable 'cpulimit'
    # $5: pod name, which should be either etcd or etcd-events
    function prepare-etcd-manifest {
      local host_name=${ETCD_HOSTNAME:-$(hostname -s)}
    
      local resolve_host_script_py='
    import socket
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                return generatedClass;
            }
    
            private void writeGenericReturnTypeFields() {
                if (!genericReturnTypeConstantsIndex.isEmpty()) {
                    addMethod(ACC_STATIC, "<clinit>", "()V", methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                        for (Map.Entry<java.lang.reflect.Type, ReturnTypeEntry> entry : genericReturnTypeConstantsIndex.entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    			{
    				ID:   testContainerID,
    				Name: testContainerName,
    				Resources: &kubecontainer.ContainerResources{
    					CPURequest:    CPU1AndMem1G.Cpu(),
    					MemoryRequest: CPU1AndMem1G.Memory(),
    					CPULimit:      CPU1AndMem1G.Cpu(),
    					MemoryLimit:   CPU1AndMem1G.Memory(),
    				},
    			},
    		},
    	}
    
    	tests := []struct {
    		name      string
    		pod       *v1.Pod
    		oldStatus *v1.PodStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    		ret = syscall.Errno(r0)
    	}
    	return
    }
    
    func CoInitializeEx(reserved uintptr, coInit uint32) (ret error) {
    	r0, _, _ := syscall.Syscall(procCoInitializeEx.Addr(), 2, uintptr(reserved), uintptr(coInit), 0)
    	if r0 != 0 {
    		ret = syscall.Errno(r0)
    	}
    	return
    }
    
    func CoTaskMemFree(address unsafe.Pointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top