Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for lastTest (0.09 seconds)

  1. README.md

    **Libtensorflow Windows GPU** | Status Temporarily Unavailable                                                                                                                                                   | [Nightly Binary](https://storage.googleapis.com/libtensorflow-nightly/prod/tensorflow/release/windows/latest/gpu/windows_gpu_libtensorflow_binaries.tar.gz)...
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Apr 02 10:38:57 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  2. scripts/add_latest_release_date.py

    """Check release-notes.md and add today's date to the latest release header if missing."""
    
    import re
    import sys
    from datetime import date
    
    RELEASE_NOTES_FILE = "docs/en/docs/release-notes.md"
    RELEASE_HEADER_PATTERN = re.compile(r"^## (\d+\.\d+\.\d+)\s*(\(.*\))?\s*$")
    
    
    def main() -> None:
        with open(RELEASE_NOTES_FILE) as f:
            lines = f.readlines()
    
        for i, line in enumerate(lines):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:06:36 GMT 2026
    - 1023 bytes
    - Click Count (0)
  3. .pre-commit-config.yaml

            entry: uv run ./scripts/translation_fixer.py fix-pages
            files: ^docs/(?!en/).*/docs/.*\.md$
    
          - id: add-release-date
            language: unsupported
            name: add date to latest release header
            entry: uv run python scripts/add_latest_release_date.py
            files: ^docs/en/docs/release-notes\.md$
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:06:36 GMT 2026
    - 2.6K bytes
    - Click Count (1)
  4. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

        List<Class<?>> result = new ArrayList<>();
        NEXT_CANDIDATE:
        for (Class<?> candidate : Iterables.filter(candidateClasses, classFilter)) {
          for (Class<?> testClass : testClasses.get(candidate)) {
            if (hasTest(testClass, explicitTestNames)) {
              // covered by explicit test
              continue NEXT_CANDIDATE;
            }
          }
          result.add(candidate);
        }
        return result;
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  5. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

        List<Class<?>> result = new ArrayList<>();
        NEXT_CANDIDATE:
        for (Class<?> candidate : Iterables.filter(candidateClasses, classFilter)) {
          for (Class<?> testClass : testClasses.get(candidate)) {
            if (hasTest(testClass, explicitTestNames)) {
              // covered by explicit test
              continue NEXT_CANDIDATE;
            }
          }
          result.add(candidate);
        }
        return result;
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  6. docs/en/docs/release-notes.md

    ---
    hide:
      - navigation
    ---
    
    # Release Notes
    
    ## Latest Changes
    
    ### Internal
    
    * 🔨 Add pre-commit hook to ensure latest release header has date. PR [#15293](https://github.com/fastapi/fastapi/pull/15293) by [@YuriiMotov](https://github.com/YuriiMotov).
    
    ## 0.135.3 (2026-04-01)
    
    ### Features
    
    * ✨ Add support for `@app.vibe()`. PR [#15280](https://github.com/fastapi/fastapi/pull/15280) by [@tiangolo](https://github.com/tiangolo).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
Back to Top