Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 119 for reminder (0.04 seconds)

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

  1. .github/workflows/issue-manager.yml

                    "message": "As this PR has been waiting for the original user for a while but seems to be inactive, it's now going to be closed. But if there's anyone interested, feel free to create a new PR.",
                    "reminder": {
                        "before": "P3D",
                        "message": "Heads-up: this will be closed in 3 days unless there’s new activity."
                    }
                  },
                  "invalid": {
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Oct 11 19:36:25 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  2. CONTRIBUTING.md

        change.
    -   You make the change and submit it for the review again.
    -   This cycle repeats itself until the PR gets approved.
    -   Note: As a friendly reminder, we may reach out to you if the PR is awaiting
        your response for more than 2 weeks.
    
    **4. Approved**
    
    -   Once the PR is approved, it gets `kokoro:force-run` label applied and it
        initiates CI/CD tests.
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Sat Jan 11 04:47:59 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  3. docs/en/docs/img/sponsors/render.svg

    render.svg...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Oct 31 09:13:26 GMT 2024
    - 12.5K bytes
    - Click Count (0)
  4. docs/en/docs/img/sponsors/render-banner.svg

    render-banner.svg...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Oct 31 09:13:26 GMT 2024
    - 12.6K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/math/Quantiles.java

            // get a rounded ratio and a remainder which can be expressed as ints, without risk of
            // overflow:
            int quotient = (int) LongMath.divide(numerator, scale, RoundingMode.DOWN);
            int remainder = (int) (numerator - (long) quotient * scale);
            quotients[i] = quotient;
            remainders[i] = remainder;
            requiredSelections[requiredSelectionsCount] = quotient;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Mar 17 20:26:29 GMT 2025
    - 30.1K bytes
    - Click Count (0)
  6. helm-reindex.sh

    Nitish Tiwari <******@****.***> 1629498654 +0530
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 20 22:30:54 GMT 2021
    - 121 bytes
    - Click Count (0)
  7. guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java

          int j = i & ARRAY_MASK;
          tmp += UnsignedLongs.divide(longs[j], divisors[j]);
        }
        return tmp;
      }
    
      @Benchmark
      long remainder(int reps) {
        long tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
          tmp += UnsignedLongs.remainder(longs[j], divisors[j]);
        }
        return tmp;
      }
    
      @Benchmark
      long parseUnsignedLong(int reps) {
        long tmp = 0;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Dec 28 01:26:26 GMT 2024
    - 4.4K bytes
    - Click Count (0)
  8. CHANGELOG/CHANGELOG-1.20.md

      Promote node.k8s.io API groups from v1beta1 to v1. ([#95718](https://github.com/kubernetes/kubernetes/pull/95718), [@SergeyKanzhelev](https://github.com/SergeyKanzhelev)) [SIG Apps, Auth, Node, Scheduling and Testing]
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Wed Jan 19 21:05:45 GMT 2022
    - 409K bytes
    - Click Count (0)
  9. impl/maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java

                sb.setLength(0);
                String[] words = S_FILTER.split(line);
                for (String word : words) {
                    if (sb.length() >= remainder - word.length() - (!sb.isEmpty() ? 1 : 0)) {
                        repeat(sb, ' ', remainder - sb.length());
                        result.add(BOX_CHAR + " " + sb + " " + BOX_CHAR);
                        sb.setLength(0);
                    }
                    if (!sb.isEmpty()) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/math/QuantilesAlgorithm.java

          int positionFloor = (int) LongMath.divide(numerator, scale, RoundingMode.DOWN);
          int remainder = (int) (numerator - positionFloor * scale);
          if (remainder == 0) {
            return dataset[positionFloor];
          } else {
            double positionFrac = (double) remainder / scale;
            return dataset[positionFloor]
                + positionFrac * (dataset[positionFloor + 1] - dataset[positionFloor]);
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 7.1K bytes
    - Click Count (0)
Back to Top