Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for Parker (0.26 sec)

  1. maven-compat/src/test/resources/local-repo/marker.txt

    this is just a marker file....
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 27 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/local-repo/marker.txt

    this is just a marker file....
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 27 bytes
    - Viewed (0)
  3. cmd/metacache-marker.go

    import (
    	"context"
    	"fmt"
    	"strconv"
    	"strings"
    )
    
    // markerTagVersion is the marker version.
    // Should not need to be updated unless a fundamental change is made to the marker format.
    const markerTagVersion = "v2"
    
    // parseMarker will parse a marker possibly encoded with encodeMarker
    func (o *listPathOptions) parseMarker() {
    	s := o.Marker
    	if !strings.Contains(s, "[minio_cache:"+markerTagVersion) {
    		return
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/repo-marker.txt

    This is a marker file to allow the repository to be found in the classpath....
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 75 bytes
    - Viewed (0)
  5. internal/jwt/parser_test.go

    package jwt
    
    // This file is a re-implementation of the original code here with some
    // additional allocation tweaks reproduced using GODEBUG=allocfreetrace=1
    // original file https://github.com/golang-jwt/jwt/blob/main/parser.go
    // borrowed under MIT License https://github.com/golang-jwt/jwt/blob/main/LICENSE
    
    import (
    	"fmt"
    	"testing"
    	"time"
    
    	"github.com/golang-jwt/jwt/v4"
    )
    
    var (
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Nov 05 19:20:08 GMT 2021
    - 6K bytes
    - Viewed (0)
  6. docs/bucket/lifecycle/README.md

            }
        ]
    }
    ```
    
    ### 3.3 Automatic removal of delete markers with no other versions
    
    When an object has only one version as a delete marker, the latter can be automatically removed after a certain number of days using the following configuration:
    
    ```
    {
        "Rules": [
            {
                "ID": "Removing all delete markers",
                "Expiration": {
                    "DeleteMarker": true
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Aug 26 07:33:25 GMT 2023
    - 9K bytes
    - Viewed (1)
  7. docs/bucket/replication/setup_2site_existing_replication.sh

    mkdir -p /tmp/data
    for i in $(seq 1 10); do
    	echo "T" >/tmp/data/file_${i}.txt
    done
    
    ./mc mirror /tmp/data sitea/bucket/
    ./mc version enable sitea/bucket
    
    ./mc cp /tmp/data/file_1.txt sitea/bucket/marker
    ./mc rm sitea/bucket/marker
    
    ./mc mb siteb/bucket/
    ./mc version enable siteb/bucket/
    
    echo "adding replication rule for site a -> site b"
    ./mc replicate add sitea/bucket/ \
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Mar 04 18:05:56 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  8. internal/s3select/sql/parser_test.go

    Harshavardhana <******@****.***> 1705561397 -0800
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  9. internal/bucket/replication/rule.go

    	errPriorityMissing                        = Errorf("Priority must be specified")
    	errInvalidDeleteMarkerReplicationStatus   = Errorf("Delete marker replication status is invalid")
    	errDestinationSourceIdentical             = Errorf("Destination bucket cannot be the same as the source bucket.")
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Jan 24 23:22:20 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  10. cmd/batch-expire_test.go

              # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
              # retainVersions: 5 # keep the latest 5 versions of the object.
      
        - type: deleted # objects with delete marker as their latest version
          name: NAME # match object names that satisfy the wildcard expression.
          olderThan: 10h # match objects older than this value (e.g. 7d10h31s)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 3K bytes
    - Viewed (0)
Back to top