Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mirrorOf (0.18 sec)

  1. cmd/batch-handlers.go

    				ReplicationMTime:        srcObjInfo.ModTime,
    				ReplicationStatus:       miniogo.ReplicationStatusReplica,
    				ReplicationRequest:      true, // always set this to distinguish between `mc mirror` replication and serverside
    			},
    		})
    	}
    
    	if retry && !s3Type { // when we are retrying avoid copying if necessary.
    		gopts := miniogo.GetObjectOptions{}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue1435.go

    // they are subject to the system calls being tested. For the actual
    // Go functionality being tested here, the syscall_linux_test version
    // is considered authoritative, but non-trivial improvements to that
    // should be mirrored here.
    func test1435(t *testing.T) {
    	if syscall.Getuid() != 0 {
    		t.Skip("skipping root only test")
    	}
    	if testing.Short() && testenv.Builder() != "" && os.Getenv("USER") == "swarming" {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  3. cmd/bucket-replication-handlers.go

    				SourceVersionID:          mustGetUUID(),
    				ReplicationStatus:        minio.ReplicationStatusReplica,
    				SourceMTime:              time.Now(),
    				ReplicationRequest:       true, // always set this to distinguish between `mc mirror` replication and serverside
    				ReplicationValidityCheck: true, // set this to validate the replication config
    			},
    		}
    		obj := path.Join(minioReservedBucket, globalLocalNodeNameHex, "deleteme")
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Oct 28 04:08:53 GMT 2023
    - 23.2K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    			ReplicationMTime:        dobj.DeleteMarkerMTime.Time,
    			ReplicationStatus:       minio.ReplicationStatusReplica,
    			ReplicationRequest:      true, // always set this to distinguish between `mc mirror` replication and serverside
    		},
    	})
    	if rmErr != nil {
    		rinfo.Err = rmErr
    		if dobj.VersionID == "" {
    			rinfo.ReplicationStatus = replication.Failed
    		} else {
    			rinfo.VersionPurgeStatus = Failed
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  5. cni/pkg/install/binaries.go

    // limitations under the License.
    
    package install
    
    import (
    	"os"
    	"path/filepath"
    
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Copies/mirrors any files present in a single source dir to N number of target dirs
    // and returns a set of the filenames copied.
    func copyBinaries(srcDir string, targetDirs []string) (sets.String, error) {
    	copiedFilenames := sets.String{}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Dec 11 19:10:54 GMT 2023
    - 1.5K bytes
    - Viewed (0)
Back to top