Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Sago (0.36 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    			objectName:             "foodir/fooobject",
    			versionID:              uuid.NewString(),
    			objectModTime:          time.Now().UTC().Add(-10 * 24 * time.Hour), // Created 10 days ago
    			objectSuccessorModTime: time.Now().UTC().Add(-10 * 24 * time.Hour), // Created 10 days ago
    			isNoncurrent:           true,
    			expectedAction:         DeleteVersionAction,
    		},
    		{
    			inputConfig: `<LifecycleConfiguration>
                                 <Rule>
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Sat Mar 09 06:41:22 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  2. docs/batch-jobs/README.md

    E24HH4nNMcgY5taynaPfxu  replicate       minioadmin      1 minute ago
    ```
    
    ### List all 'replicate' batch jobs
    ```
    mc batch list alias/ --type replicate
    ID                      TYPE            USER            STARTED
    E24HH4nNMcgY5taynaPfxu  replicate       minioadmin      1 minute ago
    ```
    
    ### Real-time 'status' for a batch job
    ```
    mc batch status myminio/ E24HH4nNMcgY5taynaPfxu
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Oct 06 06:00:43 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  3. .github/actions/people/app/main.py

        one_year_commenters = Counter()
        authors: Dict[str, Author] = {}
    
        now = datetime.now(tz=timezone.utc)
        one_month_ago = now - timedelta(days=30)
        three_months_ago = now - timedelta(days=90)
        six_months_ago = now - timedelta(days=180)
        one_year_ago = now - timedelta(days=365)
    
        for discussion in discussion_nodes:
            discussion_author_name = None
            if discussion.author:
    Python
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  4. lib/time/zoneinfo.zip

    Pacific/Guadalcanal Pacific/Guam Pacific/Honolulu Pacific/Johnston Pacific/Kanton Pacific/Kiritimati Pacific/Kosrae Pacific/Kwajalein Pacific/Majuro Pacific/Marquesas Pacific/Midway Pacific/Nauru Pacific/Niue Pacific/Norfolk Pacific/Noumea Pacific/Pago_Pago Pacific/Palau Pacific/Pitcairn Pacific/Pohnpei Pacific/Ponape Pacific/Port_Moresby Pacific/Rarotonga Pacific/Saipan Pacific/Samoa Pacific/Tahiti Pacific/Tarawa Pacific/Tongatapu Pacific/Truk Pacific/Wake Pacific/Wallis Pacific/Yap Poland Portugal...
    ZIP Archive
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 392.3K bytes
    - Viewed (1)
  5. docs/en/docs/history-design-future.md

    # History, Design and Future
    
    Some time ago, <a href="https://github.com/tiangolo/fastapi/issues/3#issuecomment-454956920" class="external-link" target="_blank">a **FastAPI** user asked</a>:
    
    > What’s the history of this project? It seems to have come from nowhere to awesome in a few weeks [...]
    
    Here's a little bit of that history.
    
    ## Alternatives
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CacheTest.kt

      }
    
      @Test
      fun defaultExpirationDateConditionallyCached() {
        //      last modified: 115 seconds ago
        //             served:  15 seconds ago
        //   default lifetime: (115 - 15) / 10 = 10 seconds
        //            expires:  10 seconds from served date = 5 seconds ago
        val lastModifiedDate = formatDate(-115, TimeUnit.SECONDS)
        val conditionalRequest =
          assertConditionallyCached(
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  7. docs/distributed/DECOMMISSION.md

    ```
    
    ### Decommissioning status
    
    ```
    λ mc admin decommission status alias/ http://minio{1...2}/data{1...4}
    Decommissioning rate at 36 MiB/sec [4 TiB/50 TiB]
    Started: 1 minute ago
    ```
    
    Once it is **Complete**
    
    ```
    λ mc admin decommission status alias/ http://minio{1...2}/data{1...4}
    Decommission of pool http://minio{1...2}/data{1...4} is complete, you may now remove it from server command line
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Jul 11 14:59:49 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  8. cmd/local-locker_test.go

    	}
    	if len(l.lockUID) != len(rResources)+len(wResources) {
    		t.Fatalf("lockUID len, got %d, want %d + %d", len(l.lockUID), len(rResources), len(wResources))
    	}
    
    	// Expire a minute ago.
    	l.expireOldLocks(-time.Minute)
    	if len(l.lockMap) != 0 {
    		t.Fatalf("after cleanup should be empty, got %d", len(l.lockMap))
    	}
    	if len(l.lockUID) != 0 {
    		t.Fatalf("lockUID len, got %d, want %d", len(l.lockUID), 0)
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Sun Mar 05 04:57:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * QPS=5 (5 tokens per second), if we ensure that a request isn't granted earlier than 200ms after
       * the last one, then we achieve the intended rate. If a request comes and the last request was
       * granted only 100ms ago, then we wait for another 100ms. At this rate, serving 15 fresh permits
       * (i.e. for an acquire(15) request) naturally takes 3 seconds.
       *
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Apr 04 09:45:04 GMT 2023
    - 19.3K bytes
    - Viewed (0)
  10. cmd/metacache-set.go

    			if err == nil && time.Since(meta.lastHandout) > metacacheMaxClientWait {
    				cancel()
    				exit = true
    				meta.status = scanStateError
    				meta.error = fmt.Sprintf("listing canceled since time since last handout was %v ago", time.Since(meta.lastHandout).Round(time.Second))
    				o.debugln(color.Green("saveMetaCacheStream: ") + meta.error)
    				meta, err = o.updateMetacacheListing(meta, rpc)
    			}
    			if err == nil {
    				*mc.meta = meta
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 30.4K bytes
    - Viewed (0)
Back to top