Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dirty (0.05 sec)

  1. okhttp/src/test/java/okhttp3/CacheTest.kt

          0
    
          """.trimIndent()
        val entryBody = "abc"
        val journalBody = """libcore.io.DiskLruCache
    1
    201105
    2
    
    DIRTY $urlKey
    CLEAN $urlKey ${entryMetadata.length} ${entryBody.length}
    """
        fileSystem.createDirectory(cache.directoryPath)
        writeFile(cache.directoryPath, "$urlKey.0", entryMetadata)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	tx, err := db.BeginTx(ctx, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Ignore dirty session for this test.
    	// A failing test should trigger the dirty session flag as well,
    	// but that isn't exactly what this should test for.
    	tx.txi.(*fakeTx).c.skipDirtySession = true
    
    	defer tx.Rollback()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top