Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 498 for tunnin (0.03 sec)

  1. docs/bucket/lifecycle/README.md

    ```
    
    > The admin user running this command needs the "admin:SetTier" and "admin:ListTier" permissions if not running as root.
    
    Using above tier, set up a lifecycle rule with transition:
    
    ```
     mc ilm add --expiry-days 365 --transition-days 45 --storage-class "AZURETIER" myminio/srcbucket
    ```
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/Crawler.java

        /** Thread name for data store crawling process. */
        private static final String DATA_CRAWLING_PROCESS = "DataStoreCrawler";
    
        /** Atomic flag indicating whether the crawler is currently running. */
        private static AtomicBoolean running = new AtomicBoolean(false);
    
        /** Thread-safe queue for collecting error messages during crawling operations. */
        private static Queue<String> errors = new ConcurrentLinkedQueue<>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  3. docs/distributed/README.md

    - Servers running distributed MinIO instances should be less than 15 minutes apart. You can enable [NTP](http://www.ntp.org/) service as a best practice to ensure same times across servers.
    - `MINIO_DOMAIN` environment variable should be defined and exported for bucket DNS style support.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

    import java.util.logging.Level;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Base class for services that can implement {@link #startUp} and {@link #shutDown} but while in
     * the "running" state need to perform a periodic task. Subclasses can implement {@link #startUp},
     * {@link #shutDown} and also a {@link #runOneIteration} method that will be executed periodically.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/pac/PacMacTest.java

            verifyNfold("password", 7,
                    new byte[] { (byte) 0x78, (byte) 0xa0, (byte) 0x7b, (byte) 0x6c, (byte) 0xaf, (byte) 0x85, (byte) 0xfa });
    
            // 64-fold("Rough Consensus, and Running Code")
            verifyNfold("Rough Consensus, and Running Code", 8,
                    new byte[] { (byte) 0xbb, (byte) 0x6e, (byte) 0xd3, (byte) 0x08, (byte) 0x70, (byte) 0xb7, (byte) 0xf0, (byte) 0xe0 });
    
            // 64-fold("kerberos")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. cmd/metacache_test.go

    		lastUpdate:   metaCacheTestsetTimestamp.Add(-8 * time.Minute),
    		lastHandout:  metaCacheTestsetTimestamp,
    		dataVersion:  metacacheStreamVersion,
    	},
    	7: {
    		id:           "case-8-running",
    		bucket:       "bucket",
    		root:         "folder/running",
    		recursive:    false,
    		status:       scanStateStarted,
    		fileNotFound: false,
    		error:        "",
    		started:      metaCacheTestsetTimestamp.Add(-1 * time.Minute),
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Sep 08 18:06:45 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbRenewableCredentials.java

     */
    package jcifs.smb;
    
    /**
     * Interface for renewable SMB credentials.
     *
     * This interface defines methods for credentials that can be
     * automatically renewed during long-running operations.
     *
     * @author mbechler
     */
    public interface SmbRenewableCredentials extends CredentialsInternal {
    
        /**
         * Renew the credentials
         *
         * @return the renewed credentials
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ListenableFutureTask.java

       * Callable}.
       *
       * @param callable the callable task
       * @since 10.0
       */
      public static <V extends @Nullable Object> ListenableFutureTask<V> create(Callable<V> callable) {
        return new ListenableFutureTask<>(callable);
      }
    
      /**
       * Creates a {@code ListenableFutureTask} that will upon running, execute the given {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/first-steps.md

    {* ../../docs_src/first_steps/tutorial001.py *}
    
    📁 👈 📁 `main.py`.
    
    🏃 🖖 💽:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

        public void setUp() throws Exception {
            super.setUp();
            processHelper = new ProcessHelper();
        }
    
        @Override
        public void tearDown() throws Exception {
            // Clean up any running processes
            processHelper.destroy();
            super.tearDown();
        }
    
        public void test_isProcessRunning_empty() {
            assertFalse(processHelper.isProcessRunning());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top