Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 159 for cpuinit (0.25 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

    } CU_BasicRunMode;
    
    CU_EXPORT CU_ErrorCode CU_basic_run_tests(void);
    /**< 
     *  Runs all registered CUnit tests using the basic interface.
     *  The default CU_BasicRunMode is used unless it has been
     *  previously changed using CU_basic_set_mode().  The CUnit test
     *  registry must have been initialized before calling this function.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/multipleFiles.txt

    public final class main/Main {
        // source: 'main.kt'
        public final static field INSTANCE: main.Main
        static method <clinit>(): void
        private method <init>(): void
        public final static method main(p0: java.lang.String[]): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 243 bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/mod.go

    and downgrading of dependencies should be done using 'go get'.
    See 'go help modules' for an overview of module functionality.
    	`,
    
    	Commands: []*base.Command{
    		cmdDownload,
    		cmdEdit,
    		cmdGraph,
    		cmdInit,
    		cmdTidy,
    		cmdVendor,
    		cmdVerify,
    		cmdWhy,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 807 bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cunit/plugins/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Plugins for cunit testing.
     */
    @org.gradle.api.Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 736 bytes
    - Viewed (0)
  5. 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)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cunit/CUnitTestSuiteSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.nativeplatform.test.cunit;
    
    import org.gradle.api.Incubating;
    import org.gradle.nativeplatform.test.NativeTestSuiteSpec;
    
    /**
     * Test suite of CUnit tests.
     */
    @Incubating
    public interface CUnitTestSuiteSpec extends NativeTestSuiteSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 875 bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/plugins/CUnitPluginIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.cunit.plugins
    
    import org.gradle.integtests.fixtures.WellBehavedPluginTest
    
    class CUnitPluginIntegrationTest extends WellBehavedPluginTest {
        @Override
        String getPluginName() {
            return "cunit"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 871 bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/proc_cpuinfo_linux.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && arm64
    
    package cpu
    
    import (
    	"errors"
    	"io"
    	"os"
    	"strings"
    )
    
    func readLinuxProcCPUInfo() error {
    	f, err := os.Open("/proc/cpuinfo")
    	if err != nil {
    		return err
    	}
    	defer f.Close()
    
    	var buf [1 << 10]byte // enough for first CPU
    	n, err := io.ReadFull(f, buf[:])
    	if err != nil && err != io.ErrUnexpectedEOF {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    Exception; public byte[] encode(byte[]) throws org.apache.commons.codec.EncoderException; static void <clinit>(); } org/apache/commons/codec/binary/Hex.class package org.apache.commons.codec.binary; public synchronized class Hex { private static char[] digits; public void Hex(); public static char[] encodeHex(byte[]); public static byte[] decodeHex(char[]) throws Exception; static void <clinit>(); } org/apache/commons/codec/BinaryDecoder.class package org.apache.commons.codec; public abstract interface...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 18.4K bytes
    - Viewed (0)
  10. prow/integ-suite-kind.sh

          exit 1
          ;;
        *) # preserve positional arguments
          PARAMS+=("$1")
          shift
          ;;
      esac
    done
    
    if [ -f /proc/cpuinfo ]; then
      echo "Checking CPU..."
      grep 'model' /proc/cpuinfo || true
    fi
    
    # Default IP family of the cluster is IPv4
    export IP_FAMILY="${IP_FAMILY:-ipv4}"
    
    # LoadBalancer in Kind is supported using metallb
    export TEST_ENV=kind-metallb
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top