Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cves (0.2 sec)

  1. android/guava/src/com/google/common/collect/TreeRangeSet.java

        }
    
        @Override
        @CheckForNull
        public Range<C> get(@CheckForNull Object key) {
          if (key instanceof Cut) {
            try {
              @SuppressWarnings("unchecked") // we catch CCEs
              Cut<C> cut = (Cut<C>) key;
              if (!upperBoundWindow.contains(cut)) {
                return null;
              }
              Entry<Cut<C>, Range<C>> candidate = rangesByLowerBound.lowerEntry(cut);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 32.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Files.java

       * Previous versions would create a directory that is more accessible, as discussed in <a
       * href="https://github.com/google/guava/issues/4011">CVE-2020-8908</a>.)
       *
       * <p>Use this method instead of {@link File#createTempFile(String, String)} when you wish to
       * create a directory, not a regular file. A common pitfall is to call {@code createTempFile},
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 33.1K bytes
    - Viewed (0)
Back to top