Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 30 for 365 (0.01 seconds)

  1. .github/workflows/cleanup-stale-performance-data.yml

                DELETE FROM testExecution WHERE startTime < NOW() - INTERVAL 365 DAY;
                SELECT "results.testExecution count:" as database_table, COUNT(*) as stale_records FROM testExecution WHERE startTime < NOW() - INTERVAL 365 DAY;
                USE cross_build_results;
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Nov 20 22:15:20 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  2. internal/bucket/lifecycle/rule_test.go

    				<Expiration>
    					<Days>365</Days>
    				</Expiration>
                                <Status>Enabled</Status>
    	                    </Rule>`,
    			expectedErr: errXMLNotWellFormed,
    		},
    		{
    			inputXML: `<Rule>
    				<ID>Rule with a tag and DelMarkerExpiration</ID>
    				<Filter><Tag><Key>k1</Key><Value>v1</Value></Tag></Filter>
    				<DelMarkerExpiration>
    					<Days>365</Days>
    				</DelMarkerExpiration>
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 4.9K bytes
    - Click Count (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/OkHttpClientTest.kt

        }
        try {
          builder.callTimeout(Duration.ofDays(365))
        } catch (ignored: IllegalArgumentException) {
        }
        try {
          builder.connectTimeout(Duration.ofDays(365))
        } catch (ignored: IllegalArgumentException) {
        }
        try {
          builder.writeTimeout(Duration.ofDays(365))
        } catch (ignored: IllegalArgumentException) {
        }
        try {
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Jun 18 12:28:21 GMT 2025
    - 13.4K bytes
    - Click Count (1)
  4. cmd/bucket-lifecycle-handlers_test.go

    			secretKey:          creds.SecretKey,
    			body:               []byte(`<LifecycleConfiguration><Rule><ID>id</ID><Filter><Prefix>logs/</Prefix><Tag><Key>Key1</Key><Value>Value1</Value></Tag></Filter><Status>Enabled</Status><Expiration><Days>365</Days></Expiration></Rule></LifecycleConfiguration>`),
    			expectedRespStatus: http.StatusBadRequest,
    			lifecycleResponse:  []byte(``),
    			errorResponse: APIErrorResponse{
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Jun 10 15:50:49 GMT 2024
    - 11.3K bytes
    - Click Count (0)
  5. docs/bucket/lifecycle/README.md

                },
                "NoncurrentVersionExpiration": {
                    "NoncurrentDays": 365
                },
                "Status": "Enabled"
            }
        ]
    }
    ```
    
    This JSON rule is equivalent to the following MinIO Client command:
    ```
    mc ilm rule add --noncurrent-expire-days 365 --prefix "user-uploads/" myminio/mydata
    ```
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  6. docs/sts/assume-role.md

    ## API Request Parameters
    
    ### Version
    
    Indicates STS API version information, the only supported value is '2011-06-15'. This value is borrowed from AWS STS API documentation for compatibility reasons.
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  7. docs/sts/client-grants.md

    ## API Request Parameters
    
    ### Token
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  8. .github/workflows/stale-issues.yml

              exempt-pr-labels: "override-stale"
              #Limit the No. of API calls in one run default value is 30.
              operations-per-run: 1000
              days-before-issue-stale: 180
              days-before-issue-close: 365
              stale-issue-label: "stale"
              # reason for closed the issue default value is not_planned
              close-issue-reason: completed
              # List of labels to remove when issues/PRs unstale. 
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Sat Nov 01 08:08:54 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  9. docs/integrations/veeam/README.md

    ![Choose Immutability Options for Backups](https://raw.githubusercontent.com/minio/minio/master/docs/integrations/veeam/screenshots/backup_job_immutable_days.png)
    
    #### Backup Office 365 with VBO
    
    - Create a new bucket for VBO backups
    
    ```
    mc mb -l myminio/vbo
    ```
    
    - Under Backup Infrastructure, right click on Object Storage Repositories and choose "Add object storage"
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  10. README.md

     - [Git](https://github.com/codelibs/fess-ds-git)
     - [Gitbucket](https://github.com/codelibs/fess-ds-gitbucket)
     - [G Suite](https://github.com/codelibs/fess-ds-gsuite)
     - [JSON](https://github.com/codelibs/fess-ds-json)
     - [Office 365](https://github.com/codelibs/fess-ds-office365)
     - [S3](https://github.com/codelibs/fess-ds-s3)
     - [Salesforce](https://github.com/codelibs/fess-ds-salesforce)
     - [SharePoint](https://github.com/codelibs/fess-ds-sharepoint)
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 20 00:28:33 GMT 2025
    - 7.8K bytes
    - Click Count (2)
Back to Top