Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for cpuinit (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    source set should contain the cunit test files for the component under test. Source files can be located in the conventional location (`src/${component.name}Test/cunit`) or can be configured like any other source set.
    
    Gradle initialises the CUnit test registry and executes the tests, utilising some generated CUnit launcher sources. Gradle will expect and call a function with the signature `void gradle_cunit_register()` that you can use to configure the actual CUnit suites and tests to execute....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. 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)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		if kubeContainerStatus.Resources.MemoryLimit != nil {
    			currentMemoryLimit = kubeContainerStatus.Resources.MemoryLimit.Value()
    		}
    		if kubeContainerStatus.Resources.CPULimit != nil {
    			currentCPULimit = kubeContainerStatus.Resources.CPULimit.MilliValue()
    		}
    		if kubeContainerStatus.Resources.CPURequest != nil {
    			currentCPURequest = kubeContainerStatus.Resources.CPURequest.MilliValue()
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider_test.go

    	assert.Equal(cs.Timestamp.UnixNano(), actual.CPU.Time.UnixNano())
    	assert.Equal(cs.Cpu.Usage.Total, *actual.CPU.UsageCoreNanoSeconds)
    	assert.Equal(cs.CpuInst.Usage.Total, *actual.CPU.UsageNanoCores)
    
    	assert.Equal(cs.Memory.Usage, *actual.Memory.UsageBytes)
    	assert.Equal(cs.Memory.WorkingSet, *actual.Memory.WorkingSetBytes)
    	assert.Equal(cs.Memory.RSS, *actual.Memory.RSSBytes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. src/encoding/json/decode_test.go

    	IntStr     int64   `json:",string"`
    	UintptrStr uintptr `json:",string"`
    
    	PBool    *bool
    	PInt     *int
    	PInt8    *int8
    	PInt16   *int16
    	PInt32   *int32
    	PInt64   *int64
    	PUint    *uint
    	PUint8   *uint8
    	PUint16  *uint16
    	PUint32  *uint32
    	PUint64  *uint64
    	PUintptr *uintptr
    	PFloat32 *float32
    	PFloat64 *float64
    
    	String  string
    	PString *string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  6. tensorflow/BUILD

        "@platforms//:__subpackages__",
        "@snappy//:__subpackages__",
        "@upb//:__subpackages__",
        "@zlib//:__subpackages__",
        "@dlpack//:__subpackages__",
        "@arm_neon_2_x86_sse//:__subpackages__",
        "@cpuinfo//:__subpackages__",
        "@ruy//:__subpackages__",
        "@XNNPACK//:__subpackages__",
        "@pthreadpool//:__subpackages__",
        "@FXdiv//:__subpackages__",
        "@FP16//:__subpackages__",
        "@clog//:__subpackages__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.nativeplatform.test.cunit.tasks.GenerateCUnitLauncher.getHeaderDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (GenerateCUnitLauncher.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	coCreateGuid(pguid *GUID) (ret error) = ole32.CoCreateGuid
    //sys	CoTaskMemFree(address unsafe.Pointer) = ole32.CoTaskMemFree
    //sys	CoInitializeEx(reserved uintptr, coInit uint32) (ret error) = ole32.CoInitializeEx
    //sys	CoUninitialize() = ole32.CoUninitialize
    //sys	CoGetObject(name *uint16, bindOpts *BIND_OPTS3, guid *GUID, functionTable **uintptr) (ret error) = ole32.CoGetObject
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    		sb := ctxt.loader.MakeSymbolUpdater(symIdx)
    		sb.SetType(sym.SNOPTRDATA)
    		sb.AddUint8(1)
    	}
    
    	// Recalculate pe parameters now that we have ctxt.LinkMode set.
    	if ctxt.HeadType == objabi.Hwindows {
    		Peinit(ctxt)
    	}
    
    	if ctxt.LinkMode == LinkExternal {
    		// When external linking, we are creating an object file. The
    		// absolute address is irrelevant.
    		*FlagTextAddr = 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top