Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for cpp (0.01 sec)

  1. fess-crawler/src/test/resources/extractor/program/test.cpp

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: 2025-05-25 03:50
    - Last Modified: 2015-10-11 02:16
    - 81 bytes
    - Viewed (0)
  2. .github/workflows/arm-ci-extended-cpp.yml

    dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1730450410 +0000
    Registered: 2025-05-27 12:39
    - Last Modified: 2024-11-01 08:40
    - 2.5K bytes
    - Viewed (0)
  3. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                descriptor.language === Language.CPP -> {
                    exampleClass = if (descriptor.componentType === ComponentType.LIBRARY) "Hello" else "Greeter"
                    sourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "hello" else "app") + ".cpp"
                    testSourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "hello" else "app") + "_test.cpp"
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-12-15 07:49
    - 13.5K bytes
    - Viewed (0)
  4. build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts

    package gradlebuild
    
    import gradlebuild.basics.capitalize
    import gradlebuild.samples.tasks.GenerateSample
    import org.gradle.buildinit.plugins.internal.modifiers.Language
    import org.gradle.buildinit.plugins.internal.modifiers.Language.CPP
    import org.gradle.buildinit.plugins.internal.modifiers.Language.GROOVY
    import org.gradle.buildinit.plugins.internal.modifiers.Language.JAVA
    import org.gradle.buildinit.plugins.internal.modifiers.Language.KOTLIN
    Registered: 2025-05-28 11:36
    - Last Modified: 2023-09-30 16:17
    - 3.3K bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/UserGuideTransformTaskTest.groovy

            String content = TextUtil.normaliseLineSeparators(
    """            sources {
                    cpp {
                        lib library: "hello"
                    }
                }""")
            when:
            def actual = UserGuideTransformTask.normalise(content)
    
            then:
            actual ==
    """sources {
        cpp {
            lib library: "hello"
        }
    }"""
        }
    Registered: 2025-05-28 11:36
    - Last Modified: 2021-07-27 19:28
    - 1.9K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

            assertContentType("text/x-csrc", "extractor/program/test.c", "test.c");
            assertContentType("text/x-c++src", "extractor/program/test.cpp", "test.cpp");
            assertContentType("text/x-chdr", "extractor/program/test.h", "test.h");
            assertContentType("text/x-c++hdr", "extractor/program/test.hpp", "test.hpp");
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-03-15 06:52
    - 11.6K bytes
    - Viewed (0)
  7. .gitignore

    *.pyc
    __pycache__
    *.swp
    .vscode/
    cmake_build/
    tensorflow/contrib/cmake/_build/
    .idea/**
    /build/
    [Bb]uild/
    /build_output/
    /tensorflow/core/util/version_info.cc
    /tensorflow/python/framework/fast_tensor_util.cpp
    /tensorflow/lite/gen/**
    /tensorflow/lite/tools/make/downloads/**
    /tensorflow/lite/tools/make/gen/**
    /api_init_files_list.txt
    /estimator_api_init_files_list.txt
    *.whl
    dist
    venv/
    
    # Android
    .gradle
    Registered: 2025-05-27 12:39
    - Last Modified: 2024-11-30 21:41
    - 945 bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Hashing.java

      static final int GOOD_FAST_HASH_SEED = (int) System.currentTimeMillis();
    
      /**
       * Returns a hash function implementing the <a
       * href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp">32-bit murmur3
       * algorithm, x86 variant</a> (little-endian variant), using the given seed value, <b>with a known
       * bug</b> as described in the deprecation text.
       *
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-28 02:48
    - 29.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java

                return murmur3_32(seed).hashBytes(input).asBytes();
              }
            };
        // Murmur3A, MurmurHash3 for x86, 32-bit (MurmurHash3_x86_32)
        // https://github.com/aappleby/smhasher/blob/master/src/main.cpp
        HashTestUtils.verifyHashFunction(hf, 32, 0xB0F57EE3);
      }
    
      public void testParanoid() {
        HashFn hf =
            new HashFn() {
              @Override
              public byte[] hash(byte[] input, int seed) {
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-19 18:03
    - 8.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Murmur3_128HashFunction.java

     * domain. The author hereby disclaims copyright to this source code.
     */
    
    /*
     * Source:
     * https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp
     * (Modified to adapt to Guava coding conventions and to use the HashFunction interface)
     */
    
    package com.google.common.hash;
    
    import static java.lang.Byte.toUnsignedInt;
    
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-04-14 16:36
    - 5.8K bytes
    - Viewed (0)
Back to top