Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 521 - 530 of 625 for chunks (0.65 seconds)

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

  1. CONTRIBUTING.md

        ./gradlew wrapper --gradle-distribution-url=file:/path/to/gradle-<version>-all.zip
    
    ## Our thanks
    
    We deeply appreciate your effort toward improving Gradle. For any contribution, large or small, you will be immortalized in the release notes for the version you've contributed to.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  2. docs/smb3-features/04-directory-leasing-design.md

                            results.add(new SmbFile(parentPath + "/" + childName, context));
                        }
                    }
                } else {
                    // Fall back to individual checks
                    for (String path : entry.getValue()) {
                        try {
                            SmbFile file = new SmbFile(path, context);
                            if (file.exists()) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 36.2K bytes
    - Click Count (0)
  3. guava/src/com/google/common/base/Splitter.java

       * {@link Splitter}.
       *
       * @since 10.0
       */
      public static final class MapSplitter {
        private static final String INVALID_ENTRY_MESSAGE = "Chunk [%s] is not a valid entry";
        private final Splitter outerSplitter;
        private final Splitter entrySplitter;
    
        private MapSplitter(Splitter outerSplitter, Splitter entrySplitter) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 23.8K bytes
    - Click Count (0)
  4. docs/en/docs/async.md

    Then you go to the counter 🔀, to the initial task that is now finished ⏯, pick the burgers, say thanks and take them to the table. That finishes that step / task of interaction with the counter ⏹. That in turn, creates a new task, of "eating burgers" 🔀 ⏯, but the previous one of "getting burgers" is finished ⏹.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 23.4K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.32.md

      - [Important Security Information](#important-security-information-1)
        - [CVE-2025-4563: Nodes can bypass dynamic resource allocation authorization checks](#cve-2025-4563-nodes-can-bypass-dynamic-resource-allocation-authorization-checks)
      - [Changes by Kind](#changes-by-kind-7)
        - [Feature](#feature-6)
        - [Bug or Regression](#bug-or-regression-6)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-3)
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Feb 26 23:58:21 GMT 2026
    - 470.5K bytes
    - Click Count (0)
  6. docs/ja/docs/tutorial/body.md

    エディタとして [PyCharm](https://www.jetbrains.com/pycharm/) を使用している場合、[Pydantic PyCharm Plugin](https://github.com/koxudaxi/pydantic-pycharm-plugin/) を使用できます。
    
    以下により、Pydanticモデルに対するエディタサポートが改善されます:
    
    * auto-completion
    * type checks
    * refactoring
    * searching
    * inspections
    
    ///
    
    ## モデルを使用する { #use-the-model }
    
    関数内では、モデルオブジェクトのすべての属性に直接アクセスできます:
    
    {* ../../docs_src/body/tutorial002_py310.py *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  7. scripts/doc_parsing_utils.py

            start_line_index = block["start_line_no"] - 1
            for i, updated_line in enumerate(updated_content):
                modified_text[start_line_index + i] = updated_line
    
        return modified_text
    
    
    # All checks
    # --------------------------------------------------------------------------------------
    
    
    def check_translation(
        doc_lines: list[str],
        en_doc_lines: list[str],
        lang_code: str,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 23.5K bytes
    - Click Count (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    * Networking test rewrite ([#31559](https://github.com/kubernetes/kubernetes/pull/31559), [@bprashanth](https://github.com/bprashanth))
    * Fix the equality checks for numeric values in cluster/gce/util.sh. ([#37638](https://github.com/kubernetes/kubernetes/pull/37638), [@roberthbailey](https://github.com/roberthbailey))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Click Count (0)
  9. docs/tr/docs/virtual-environments.md

    her şeyi okuduysanız ve anladıysanız, artık birçok geliştiriciden **çok daha fazla** virtual environment bilgisine sahipsiniz. 🤓
    
    Bu detayları bilmek, ileride karmaşık görünen bir sorunu debug ederken büyük olasılıkla işinize yarayacak; çünkü **altta nasıl çalıştığını** biliyor olacaksınız. 😎...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.5K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

        assertThat(matcher.replaceFrom(s, "ZZ")).isEqualTo(s.substring(0, 1) + "ZZ");
        assertThat(matcher.trimFrom(s)).isEqualTo(s.substring(0, 1));
        assertEquals(1, matcher.countIn(s));
      }
    
      /**
       * Checks that expected is equals to out, and further, if in is equals to expected, then out is
       * successfully optimized to be identical to in, i.e. that "in" is simply returned.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 32.4K bytes
    - Click Count (0)
Back to Top