Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for abuse (0.01 seconds)

  1. scripts/people.py

    github_graphql_url = "https://api.github.com/graphql"
    questions_category_id = "DIC_kwDOCZduT84B6E2a"
    
    
    POINTS_PER_MINUTE_LIMIT = 84  # 5000 points per hour
    
    MINIMIZED_COMMENTS_REASONS_TO_EXCLUDE = {"abuse", "off-topic", "duplicate", "spam"}
    
    
    class RateLimiter:
        def __init__(self) -> None:
            self.last_query_cost: int = 1
            self.remaining_points: int = 5000
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:51:24 GMT 2026
    - 15K bytes
    - Click Count (0)
  2. TESTING.asciidoc

    the index has 1 shards or 2+ shards, then we shouldn't just test against an
    index with a random number of shards: there should be one test for the 1-shard
    case, and another test for the 2+ shards case.
    
    ==== Abuse randomization in multi-threaded tests
    
    Multi-threaded tests are often not reproducible due to the fact that there is
    no guarantee on the order in which operations occur across threads. Adding
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                     * During lifecycle the Artifact.getFile() can change from target/classes to the actual jar.
                     * This clearly shows that target/classes should not be abused as artifactFile just for the classpath
                     */
                    File reactorProjectFile = reactorProjects.get(artifact);
                    if (reactorProjectFile != null) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 15.6K bytes
    - Click Count (0)
Back to Top