Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 19 of 19 for jenkins (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. README.md

    -   **Continuous Integration**: Gradle easily connects with popular CI tools, including Jenkins, [GitHub Actions](https://docs.github.com/actions), [GitLab CI](https://docs.gitlab.com/ee/ci/), [CircleCI](https://circleci.com/), and more, to streamline build and deployment pipelines.
    
    ---
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Oct 20 22:15:26 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  2. guava/src/com/google/common/hash/Crc32cHashFunction.java

         * zero bytes (3 ints), while the byteTable is for advancing one byte at a time.
         * This algorithm is due to the paper "Everything we know about CRC but [are] afraid to forget"
         * by Kadatch and Jenkins, 2010.
         */
    
        Crc32cHasher() {
          super(16);
        }
    
        private boolean finished = false;
    
        /*
         * This trick allows us to avoid having separate states for "first four ints" and "all other
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Dec 28 01:26:26 GMT 2024
    - 21.2K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/hash/HashTestUtils.java

       * f(x)^c with greater than expected probability. The test for funneling is merely a test for
       * 1-bit characteristics.
       *
       * <p>There is more general code provided by Bob Jenkins to test arbitrarily sized characteristics
       * using the magic of gaussian elimination: http://burtleburtle.net/bob/crypto/findingc.html.
       */
      static void checkNo2BitCharacteristics(HashFunction function) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 18:19:59 GMT 2025
    - 25.6K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= h >>> 10;
        h += h << 3;
        h ^= h >>> 6;
        h += (h << 2) + (h << 14);
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 89.9K bytes
    - Click Count (0)
  5. guava/src/com/google/common/cache/LocalCache.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= h >>> 10;
        h += h << 3;
        h ^= h >>> 6;
        h += (h << 2) + (h << 14);
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 11 19:35:11 GMT 2025
    - 148.9K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.5.md

    * etcd version 2.2.1
      * etcd version 3.0.14 [has also been validated](https://k8s-gubernator.appspot.com/builds/kubernetes-jenkins/logs/ci-kubernetes-e2e-gce-etcd3/) but does require [specific configuration steps](https://coreos.com/blog/migrating-applications-etcd-v3.html)
    
    ## Changelog since v1.5.0-beta.3
    
    ### Other notable changes
    
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Click Count (0)
  7. src/main/resources/fess_label_id.properties

    labels.user_internationaliSDNNumber=Nomor ISDN Internasional
    labels.internationaliSDNNumber=Nomor ISDN Internasional
    labels.user_state=Provinsi
    labels.state=Provinsi
    labels.user_employeeType=Jenis Pegawai
    labels.employeeType=Jenis Pegawai
    labels.user_facsimileTelephoneNumber=Nomor Telepon Faksimile
    labels.facsimileTelephoneNumber=Nomor Telepon Faksimile
    labels.user_postOfficeBox=Kotak Pos
    labels.postOfficeBox=Kotak Pos
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 45.2K bytes
    - Click Count (0)
  8. src/main/resources/fess_message_id.properties

    errors.failed_to_write_design_image_file = Gagal mengunggah berkas gambar.
    errors.failed_to_update_jsp_file = Gagal memperbarui berkas JSP.
    errors.design_file_name_is_invalid = Nama berkas tidak valid.
    errors.design_file_is_unsupported_type = Jenis berkas ini tidak didukung.
    errors.failed_to_create_crawling_config_at_wizard = Gagal membuat konfigurasi perayapan di wizard.
    errors.design_editor_disabled = Fitur ini dinonaktifkan.
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 07 14:12:58 GMT 2025
    - 11.8K bytes
    - Click Count (0)
  9. RELEASE.md

    Tang, resec, Robin Richtsfeld, Rohan Varma, Ryohei Kuroki, SaintNazaire, Samuel
    He, Sandeep Dcunha, sandipmgiri, Sang Han, scott, Scott Mudge, Se-Won Kim, Simon
    Perkins, Simone Cirillo, Steffen Schmitz, Suvojit Manna, Sylvus, Taehoon Lee,
    Ted Chang, Thomas Deegan, Till Hoffmann, Tim, Toni Kunic, Toon Verstraelen,
    Tristan Rice, Urs KöSter, Utkarsh Upadhyay, Vish (Ishaya) Abrams, Winnie Tsang,
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Tue Oct 28 22:27:41 GMT 2025
    - 740.4K bytes
    - Click Count (3)
Back to Top