Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Antelo (0.21 sec)

  1. .github/workflows/trusted_partners.js

      const onednn_assignees = ['penpornk'];
      if (lowercased_title.includes('onednn')) assignees = onednn_assignees;
      const intel_windows_assignees = ['nitins17', 'learning-to-play'];
      if (lowercased_title.includes('intel') &&
          lowercased_title.includes('windows') && domain.includes('intel.com'))
        assignees = intel_windows_assignees;
      const apple_silicon_assignees = ['penpornk', 'nitins17'];
      if (lowercased_title.includes('apple') &&
    JavaScript
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Feb 07 13:52:04 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  2. .github/workflows/trusted-partners.yml

                const username = context.payload.pull_request.user.login;
                const domain = await script.get_email_domain({github, username});
                switch(domain) {
                case "intel.com":
                  console.log(await script.filter({github, context, domain}));
                  break;
                case "apple.com":
                  console.log(await script.filter({github, context, domain}));
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Sep 12 14:49:29 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

    ): Boolean {
        return if (testCoverage.os == Os.MACOS && testCoverage.arch == Arch.AMD64) {
            subprojectName.contains("native") ||
                // Include precondition-tester here so we understand that tests do run on macOS intel as well
                subprojectName in listOf("file-watching", "snapshots", "workers", "logging", "precondition-tester")
        } else {
            true
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 15 17:04:41 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

            assertEquals(UserAgentType.FIREFOX, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_Safari() {
            getMockRequest().addHeader("user-agent",
                    "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9");
            assertEquals(UserAgentType.SAFARI, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_Opera() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  5. README.md

    ## GNU/Linux
    
    Use the following command to run a standalone MinIO server on Linux hosts running 64-bit Intel/AMD architectures. Replace ``/data`` with the path to the drive or directory in which you want MinIO to store data.
    
    ```sh
    wget https://dl.min.io/server/minio/release/linux-amd64/minio
    chmod +x minio
    ./minio server /data
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Feb 14 17:51:34 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  6. ci/devinfra/docker_windows/Dockerfile

        sdkmanager 'extras;google;simulators'; \
        sdkmanager 'extras;google;usb_driver'; \
        sdkmanager 'extras;google;webdriver'; \
        sdkmanager 'extras;android;m2repository'; \
        sdkmanager 'extras;intel;Hardware_Accelerated_Execution_Manager'; \
        sdkmanager 'extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0'; \
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  7. doc/asm.html

    </p>
    
    <p>
    Here follow some descriptions of key Go-specific details for the supported architectures.
    </p>
    
    <h3 id="x86">32-bit Intel 386</h3>
    
    <p>
    The runtime pointer to the <code>g</code> structure is maintained
    through the value of an otherwise unused (as far as Go is concerned) register in the MMU.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  8. tensorflow/BUILD

    # LINT.IfChange
    package_group(name = "structured_tensor_allowlist")
    # LINT.ThenChange(copy.bara.sky)
    
    filegroup(
        name = "intel_binary_blob",
        data = if_mkl_ml(
            [
                "@local_xla//xla/tsl/mkl:intel_binary_blob",
            ],
        ),
    )
    
    bzl_library(
        name = "tensorflow_bzl",
        srcs = ["tensorflow.bzl"],
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  9. cmd/testdata/xl-meta-merge.zip

    tool. For application developers, see <https://min.io/docs/minio/linux/developers/minio-drivers.html> to view MinIO SDKs for supported languages. ## GNU/Linux Use the following command to run a standalone MinIO server on Linux hosts running 64-bit Intel/AMD architectures. Replace ``/data`` with the path to the drive or directory in which you want MinIO to store data. ```sh wget https://dl.min.io/server/minio/release/linux-amd64/minio chmod +x minio ./minio server /data ``` The following table lists...
    ZIP Archive
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    // For ARM, only R0 through R15 may appear.
    // For ARM64, V0 through V31 with arrangement may appear.
    //
    // For 386/AMD64 register list specifies 4VNNIW-style multi-source operand.
    // For range of 4 elements, Intel manual uses "+3" notation, for example:
    //
    //	VP4DPWSSDS zmm1{k1}{z}, zmm2+3, m128
    //
    // Given asm line:
    //
    //	VP4DPWSSDS Z5, [Z10-Z13], (AX)
    //
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
Back to top