Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 795 for stwat (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/StatStatistics.java

    import java.text.MessageFormat;
    import java.util.concurrent.atomic.AtomicLong;
    
    public interface StatStatistics {
        /**
         * Number of times {@link Stat#stat(File)} was called.
         */
        long getStatCount();
    
        /**
         * Number of times {@link Stat#getUnixMode(File)} was called.
         */
        long getUnixModeCount();
    
        class Collector {
            private final AtomicLong statCount = new AtomicLong();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/os/os_windows_test.go

    	linkInfo, err := linkFile.Stat()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !linkInfo.IsDir() {
    		t.Errorf("Open(%#q).Stat().IsDir() = false; want true", absLink)
    	}
    
    	absInfo, err := os.Stat(absDir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if !os.SameFile(absInfo, linkInfo) {
    		t.Errorf("SameFile(Stat(%#q), Open(%#q).Stat()) = false; want true", absDir, absLink)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/copycerts/copycerts_test.go

    			if goruntime.GOOS != "windows" {
    				if stat, err := os.Stat(certPath); err == nil {
    					if stat.Mode() != keyFileMode {
    						t.Errorf("key %q should have mode %#o, has %#o", certName, keyFileMode, stat.Mode())
    					}
    				} else {
    					t.Errorf("could not stat key %q: %v", certName, err)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top