Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 829 for stwat (0.04 sec)

  1. docs/site-replication/run-ssec-object-replication-with-compression.sh

    if [ "${repcount3}" -ne 1 ]; then
    	echo "BUG: object test-bucket/defpartsize not replicated"
    	exit_1
    fi
    
    # Stat the SSEC objects from source site
    echo "Stat minio1/test-bucket/encrypted"
    ./mc stat minio1/test-bucket/encrypted --enc-c "minio1/test-bucket/encrypted=${TEST_MINIO_ENC_KEY}" --insecure --json
    stat_out1=$(./mc stat minio1/test-bucket/encrypted --enc-c "minio1/test-bucket/encrypted=${TEST_MINIO_ENC_KEY}" --insecure --json)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/os/stat_windows.go

    	"syscall"
    	"unsafe"
    )
    
    // Stat returns the [FileInfo] structure describing file.
    // If there is an error, it will be of type [*PathError].
    func (file *File) Stat() (FileInfo, error) {
    	if file == nil {
    		return nil, ErrInvalid
    	}
    	return statHandle(file.name, file.pfd.Sysfd)
    }
    
    // stat implements both Stat and Lstat of a file.
    func stat(funcname, name string, followSurrogates bool) (FileInfo, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/os/os_test.go

    	// Create new temporary directory and arrange to clean it up.
    	path := t.TempDir()
    
    	// Stat of path should succeed.
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    
    	// Stat of path+"/" should succeed too.
    	path += "/"
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    }
    
    func TestNilProcessStateString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

                return Optional.empty();
            }
    
            @Provides
            FileCollectionSnapshotter createFileCollectionSnapshotter(FileSystemAccess fileSystemAccess, Stat stat) {
                return new DefaultFileCollectionSnapshotter(fileSystemAccess, stat);
            }
    
            @Provides
            ResourceSnapshotterCacheService createResourceSnapshotterCacheService(CrossBuildFileHashCache store) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. docs/bucket/replication/setup_3site_replication.sh

    sleep 1
    
    echo "Verifying the metadata difference between source and target"
    if diff -pruN <(./mc stat --json sitea/bucket/hosts | jq .) <(./mc stat --json siteb/bucket/hosts | jq .) | grep -q 'COMPLETED\|REPLICA'; then
    	echo "verified sitea-> COMPLETED, siteb-> REPLICA"
    fi
    
    if diff -pruN <(./mc stat --json sitea/bucket/hosts | jq .) <(./mc stat --json sitec/bucket/hosts | jq .) | grep -q 'COMPLETED\|REPLICA'; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/syscall/syscall_bsd_test.go

    	}
    	if n != n2 {
    		t.Errorf("Getfsstat(nil) = %d, but subsequent Getfsstat(slice) = %d", n, n2)
    	}
    	for i, stat := range data {
    		if stat == (syscall.Statfs_t{}) {
    			t.Errorf("index %v is an empty Statfs_t struct", i)
    		}
    	}
    	if t.Failed() {
    		for i, stat := range data[:n2] {
    			t.Logf("data[%v] = %+v", i, stat)
    		}
    		mount, err := exec.Command("mount").CombinedOutput()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileVisitDetails.java

    import org.gradle.internal.file.Stat;
    
    import java.io.File;
    import java.util.concurrent.atomic.AtomicBoolean;
    
    public class DefaultFileVisitDetails extends DefaultFileTreeElement implements FileVisitDetails {
        private final AtomicBoolean stop;
    
        public DefaultFileVisitDetails(File file, RelativePath relativePath, AtomicBoolean stop, Chmod chmod, Stat stat) {
            super(file, relativePath, chmod, stat);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/helper.go

    }
    
    func addContainerUsage(stat *statsapi.FsStats, container *statsapi.ContainerStats, isCRIStatsProvider bool) {
    	if rootFs := container.Rootfs; rootFs != nil {
    		stat.Time = maxUpdateTime(&stat.Time, &rootFs.Time)
    		stat.InodesUsed = addUsage(stat.InodesUsed, rootFs.InodesUsed)
    		stat.UsedBytes = addUsage(stat.UsedBytes, rootFs.UsedBytes)
    		if logs := container.Logs; logs != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_riscv64.go

    	return renameat2(olddirfd, oldpath, newdirfd, newpath, 0)
    }
    
    func Stat(path string, stat *Stat_t) (err error) {
    	return fstatat(_AT_FDCWD, path, stat, 0)
    }
    
    func Lchown(path string, uid int, gid int) (err error) {
    	return Fchownat(_AT_FDCWD, path, uid, gid, _AT_SYMLINK_NOFOLLOW)
    }
    
    func Lstat(path string, stat *Stat_t) (err error) {
    	return fstatat(_AT_FDCWD, path, stat, _AT_SYMLINK_NOFOLLOW)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

            Interner<String> stringInterner,
            FileMetadataAccessor stat,
            VirtualFileSystem virtualFileSystem,
            WriteListener writeListener,
            DirectorySnapshotterStatistics.Collector statisticsCollector,
            String... defaultExcludes
        ) {
            this.stringInterner = stringInterner;
            this.stat = stat;
            this.writeListener = writeListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top