Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for last_modified (0.18 sec)

  1. android/guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Expires} header field name. */
      public static final String EXPIRES = "Expires";
      /** The HTTP {@code Last-Modified} header field name. */
      public static final String LAST_MODIFIED = "Last-Modified";
      /** The HTTP {@code Link} header field name. */
      public static final String LINK = "Link";
      /** The HTTP {@code Location} header field name. */
      public static final String LOCATION = "Location";
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FilesTest.java

      }
    
      public void testTouchTime() throws IOException {
        File temp = createTempFile();
        assertTrue(temp.exists());
        temp.setLastModified(0);
        assertEquals(0, temp.lastModified());
        Files.touch(temp);
        assertThat(temp.lastModified()).isNotEqualTo(0);
      }
    
      public void testCreateParentDirs_root() throws IOException {
        File file = root();
        assertNull(file.getParentFile());
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 22.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/FilesTest.java

      }
    
      public void testTouchTime() throws IOException {
        File temp = createTempFile();
        assertTrue(temp.exists());
        temp.setLastModified(0);
        assertEquals(0, temp.lastModified());
        Files.touch(temp);
        assertThat(temp.lastModified()).isNotEqualTo(0);
      }
    
      public void testCreateParentDirs_root() throws IOException {
        File file = root();
        assertNull(file.getParentFile());
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 22.2K bytes
    - Viewed (0)
Back to top