Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 159 for cpuinit (0.12 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/tests/dependentComponentsReportAll.out

    > Task :dependentComponents
    
    ------------------------------------------------------------
    Root project 'cunit'
    ------------------------------------------------------------
    
    operators - Components that depend on native library 'operators'
    +--- operators:failingSharedLibrary
    +--- operators:failingStaticLibrary
    |    \--- operatorsTest:failingCUnitExe (t)
    +--- operators:passingSharedLibrary
    \--- operators:passingStaticLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 704 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     * @{
     */
                                           
    #ifndef CUNIT_AUTOMATED_H_SEEN
    #define CUNIT_AUTOMATED_H_SEEN
    
    #include "CUnit.h"
    #include "TestDB.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT void CU_automated_run_tests(void);
    /**< 
     *  Runs CUnit tests using the automated interface.
     *  This function sets appropriate callback functions, initializes the 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/resources/org/gradle/nativeplatform/test/cunit/tasks/gradle_cunit_main.c

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    #include <stdio.h>
    #include <CUnit/Automated.h>
    #include <CUnit/Basic.h>
    #include "gradle_cunit_register.h"
    
    /*
     *  Generated launcher for CUnit tests. All tests and suites must be registered in a single method:
     *      void gradle_cunit_register();
     */
    int main() {
        int failureCount;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/topology/topology.go

    	info, ok := topo.CPUDetails[cpu]
    	if !ok {
    		return -1, fmt.Errorf("unknown CPU ID: %d", cpu)
    	}
    	return info.NUMANodeID, nil
    }
    
    // CPUInfo contains the NUMA, socket, and core IDs associated with a CPU.
    type CPUInfo struct {
    	NUMANodeID int
    	SocketID   int
    	CoreID     int
    }
    
    // KeepOnly returns a new CPUDetails object with only the supplied cpus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. pkg/kubelet/qos/policy_test.go

    import (
    	"strconv"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/kubernetes/pkg/apis/scheduling"
    )
    
    const (
    	standardMemoryAmount = 8000000000
    )
    
    var (
    	cpuLimit = v1.Pod{
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Resources: v1.ResourceRequirements{
    						Limits: v1.ResourceList{
    							v1.ResourceName(v1.ResourceCPU): resource.MustParse("10"),
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 21:34:27 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit_intl.h

     */
    
    /*
     *  Internationalization support
     *
     *  05-May-2006   Initial implementation.  (JDS)
     */
    
    /** @file
     *  Internal CUnit header supporting internationalization of
     *  CUnit framework & interfaces.
     */
    /** @addtogroup Framework
     * @{
     */
    
    #ifndef CUNIT_CUNIT_INTL_H_SEEN
    #define CUNIT_CUNIT_INTL_H_SEEN
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Console.h

     */
    /** @addtogroup Console
     * @{
     */
    
    #ifndef CUNIT_CONSOLE_H_SEEN
    #define CUNIT_CONSOLE_H_SEEN
    
    #include "CUnit.h"
    #include "TestDB.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT void CU_console_run_tests(void);
    /**< Run registered CUnit tests using the console interface. */
    
    #ifdef USE_DEPRECATED_CUNIT_NAMES
    /** Deprecated (version 1). @deprecated Use CU_console_run_tests(). */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cunit/tasks/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Tasks for cunit integration.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 709 bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cadvisor_stats_provider.go

    	if !info.Spec.HasCpu || !info.Spec.HasMemory {
    		return false
    	}
    	cstat, found := latestContainerStats(info)
    	if !found {
    		return false
    	}
    	if cstat.CpuInst == nil {
    		return false
    	}
    	return cstat.CpuInst.Usage.Total != 0 && cstat.Memory.RSS != 0
    }
    
    // isContainerTerminated returns true if the specified container meet one of the following conditions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/provider_test.go

    	cinfo := getTestContainerInfo(seed, podName, podNamespace, containerName)
    	cinfo.Stats[0].Memory.RSS = 0
    	cinfo.Stats[0].CpuInst.Usage.Total = 0
    	cinfo.Stats[0].Network = &cadvisorapiv2.NetworkStats{
    		Interfaces: []cadvisorapiv1.InterfaceStats{{
    			Name:     "eth0",
    			RxBytes:  0,
    			RxErrors: 0,
    			TxBytes:  0,
    			TxErrors: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top