Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for cpuinit (0.1 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitSamplesIntegrationTest.groovy

        @Rule public final Sample cunit = sample(temporaryFolder, 'cunit')
    
        private static Sample sample(TestDirectoryProvider testDirectoryProvider, String name) {
            return new Sample(testDirectoryProvider, "native-binaries/${name}/groovy", name)
        }
    
        @ToBeFixedForConfigurationCache(because = ":components")
        def "cunit components"() {
            given:
            sample cunit
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitDependentComponentsIntegrationSpec.groovy

        def prebuiltPath = TextUtil.normaliseFileSeparators(prebuiltDir.path)
        def app = new CHelloWorldApp()
    
        def setup() {
            prebuiltDir.file("cunit/2.1-2/lib/${toolChain.unitTestPlatform}/${cunitLibName}").assumeExists()
            settingsFile << "rootProject.name = 'test'"
            buildFile << """
                apply plugin: 'cunit-test-suite'
    
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/resources/META-INF/gradle-plugins/org.gradle.cunit.properties

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 689 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

    /* Error handling & reporting functions. */
    
    #include "CUnit.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT CU_ErrorCode   CU_get_error(void);
    /**<
     *  Retrieves the current CUnit framework error code.
     *  CUnit implementation functions set the error code to indicate the
     *  status of the most recent operation.  In general, the CUnit functions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cunit/internal/DefaultCUnitTestSuiteSpec.java

     * limitations under the License.
     */
    package org.gradle.nativeplatform.test.cunit.internal;
    
    import org.gradle.nativeplatform.NativeComponentSpec;
    import org.gradle.nativeplatform.internal.AbstractNativeComponentSpec;
    import org.gradle.nativeplatform.test.cunit.CUnitTestSuiteSpec;
    import org.gradle.platform.base.ComponentSpec;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top