Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for journal (0.31 sec)

  1. cmd/tier-journal.go

    		return nil
    	}
    
    	return errors.New("no local drive found")
    }
    
    // rotate rotates the journal. If a read-only journal already exists it does
    // nothing. Otherwise renames the active journal to a read-only journal and
    // opens a new active journal.
    func (jd *tierDiskJournal) rotate() error {
    	// Do nothing if a read-only journal file already exists.
    Go
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  2. cmd/tier-journal_test.go

    		}
    	}
    }
    
    // TestJEntryWriteNewToOldMix1 - tests that adding the RemoteVersionID parameter
    // to the jentry struct does not cause unexpected errors when writing. This
    // simulates the case when the active journal has entries in the older version
    // struct and due to errors new entries are added in the new version of the
    // struct.
    func TestJEntryWriteNewToOldMix1(t *testing.T) {
    	oldStructVals := []jentryV1{
    		{"obj1", "tier1"},
    Go
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Thu Jun 03 21:26:51 GMT 2021
    - 3.2K bytes
    - Viewed (0)
  3. cmd/tier-journal_gen.go

    Aditya Manthramurthy <******@****.***> 1622755611 -0700
    Go
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Thu Jun 03 21:26:51 GMT 2021
    - 6.1K bytes
    - Viewed (0)
  4. cmd/tier-mem-journal.go

    Harshavardhana <******@****.***> 1691097375 -0700
    Go
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Thu Aug 03 21:16:15 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  5. cmd/tier-journal_gen_test.go

    Aditya Manthramurthy <******@****.***> 1622755611 -0700
    Go
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Thu Jun 03 21:26:51 GMT 2021
    - 4.3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

                  }
                }
              }
            }
          }
        }
      }
    
      companion object {
        @JvmField val JOURNAL_FILE = "journal"
    
        @JvmField val JOURNAL_FILE_TEMP = "journal.tmp"
    
        @JvmField val JOURNAL_FILE_BACKUP = "journal.bkp"
    
        @JvmField val MAGIC = "libcore.io.DiskLruCache"
    
        @JvmField val VERSION_1 = "1"
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 34.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_fr.properties

    labels.advance_search_timestamp_pastyear	=	l'année passée
    labels.searchlog_configuration	=	Journal de recherche
    labels.searchlog_title	=	Journal de recherche
    labels.searchlog_log_type	=	Type de journal
    labels.searchlog_log_type_search	=	Journal de recherche
    labels.searchlog_log_type_click	=	Cliquez sur Journal
    labels.searchlog_log_type_favorite	=	Journal favori
    labels.searchlog_log_type_user_info	=	informations de l'utilisateur
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        this.windows = windows
    
        if (filesystem.exists(cacheDir)) {
          filesystem.deleteRecursively(cacheDir)
        }
        journalFile = cacheDir / DiskLruCache.JOURNAL_FILE
        journalBkpFile = cacheDir / DiskLruCache.JOURNAL_FILE_BACKUP
        createNewCache()
      }
    
      @AfterEach fun tearDown() {
        while (!toClose.isEmpty()) {
          toClose.pop().close()
        }
        taskFaker.close()
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  9. src/packaging/common/systemd/fess.service

    User=${packaging.fess.user}
    Group=${packaging.fess.group}
    
    ExecStart=${packaging.fess.bin.dir}/fess
    
    # Connects standard output to /dev/null
    StandardOutput=null
    
    # Connects standard error to journal
    StandardError=journal
    
    # When a JVM receives a SIGTERM signal it exits with code 143
    SuccessExitStatus=143
    
    # Specifies the maximum file descriptor number that can be opened by this process
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  10. cmd/tier-sweeper.go

    }
    
    // shouldRemoveRemoteObject determines if a transitioned object should be
    // removed from remote tier. If remote object is to be deleted, returns the
    // corresponding tier deletion journal entry and true. Otherwise returns empty
    // jentry value and false.
    func (os *objSweeper) shouldRemoveRemoteObject() (jentry, bool) {
    	if os.TransitionStatus != lifecycle.TransitionComplete {
    		return jentry{}, false
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 17 05:09:58 GMT 2024
    - 4.7K bytes
    - Viewed (0)
Back to top