Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for stwat (0.47 sec)

  1. src/cmd/go/go_test.go

    	tg.t.Helper()
    	if _, err := os.Stat(path); err != nil {
    		if os.IsNotExist(err) {
    			tg.t.Fatalf("%s does not exist but should", path)
    		}
    		tg.t.Fatalf("%s stat failed: %v", path, err)
    	}
    }
    
    // mustNotExist fails if path exists.
    func (tg *testgoData) mustNotExist(path string) {
    	tg.t.Helper()
    	if _, err := os.Stat(path); err == nil || !os.IsNotExist(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    		t.Skip("skipping test on windows")
    	}
    	wfi, err := os.Stat("/etc/hosts")
    	if err != nil {
    		t.Skip("skipping test; no /etc/hosts file")
    	}
    	test := func(d Dir, name string) {
    		f, err := d.Open(name)
    		if err != nil {
    			t.Fatalf("open of %s: %v", name, err)
    		}
    		defer f.Close()
    		gfi, err := f.Stat()
    		if err != nil {
    			t.Fatalf("stat of %s: %v", name, err)
    		}
    		if !os.SameFile(gfi, wfi) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      return (_S_IFDIR & st.st_mode) != 0;
    }
    # endif  // GTEST_OS_WINDOWS_MOBILE
    
    #else
    
    typedef struct stat StatStruct;
    
    inline int FileNo(FILE* file) { return fileno(file); }
    inline int IsATTY(int fd) { return isatty(fd); }
    inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
    inline int StrCaseCmp(const char* s1, const char* s2) {
      return strcasecmp(s1, s2);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      return (_S_IFDIR & st.st_mode) != 0;
    }
    # endif  // GTEST_OS_WINDOWS_MOBILE
    
    #else
    
    typedef struct stat StatStruct;
    
    inline int FileNo(FILE* file) { return fileno(file); }
    inline int IsATTY(int fd) { return isatty(fd); }
    inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
    inline int StrCaseCmp(const char* s1, const char* s2) {
      return strcasecmp(s1, s2);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///     filesystem entry.
      ///   * Must set `status` to `TF_FAILED_PRECONDITION` if `path` is invalid.
      ///   * Might use any other error value for `status` to signal other errors.
      void (*stat)(const TF_Filesystem* filesystem, const char* path,
                   TF_FileStatistics* stats, TF_Status* status);
    
      /// Checks whether the given `path` is a directory or not.
      ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    			fmt.Fprintf(h, "chdir %s %x\n", name, hashStat(name))
    		case "stat":
    			if !filepath.IsAbs(name) {
    				name = filepath.Join(pwd, name)
    			}
    			if a.Package.Root == "" || search.InDir(name, a.Package.Root) == "" {
    				// Do not recheck files outside the module, GOPATH, or GOROOT root.
    				break
    			}
    			fmt.Fprintf(h, "stat %s %x\n", name, hashStat(name))
    		case "open":
    			if !filepath.IsAbs(name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	cfg.ModulesEnabled = true
    	setDefaultBuildMod()
    	list := filepath.SplitList(cfg.BuildContext.GOPATH)
    	if len(list) > 0 && list[0] != "" {
    		gopath = list[0]
    		if _, err := fsys.Stat(filepath.Join(gopath, "go.mod")); err == nil {
    			fmt.Fprintf(os.Stderr, "go: warning: ignoring go.mod in $GOPATH %v\n", gopath)
    			if RootMode == NeedRoot {
    				base.Fatal(ErrNoModRoot)
    			}
    			if !mustUseModules {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_mounter_test.go

    				t.Errorf("default value of file system type was overridden by type %s", csiMounter.spec.PersistentVolume.Spec.CSI.FSType)
    			}
    
    			mountPath := csiMounter.GetPath()
    			if _, err := os.Stat(mountPath); err != nil {
    				if os.IsNotExist(err) {
    					t.Errorf("SetUp() failed, volume path not created: %s", mountPath)
    				} else {
    					t.Errorf("SetUp() failed: %v", err)
    				}
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    								if len(tt.cfg) == 0 {
    									assert.Equal(t, "inbound_0.0.0.0_8080", hcm.GetStatPrefix(), "stat prefix")
    								} else {
    									// Sidecar impacts stat prefix
    									assert.Equal(t, "inbound_1.1.1.1_8080", hcm.GetStatPrefix(), "stat prefix")
    								}
    								assert.Equal(t, "APPEND_FORWARD", hcm.GetForwardClientCertDetails().String(), "forward client cert details")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    			for j := range po.Status.InitContainerStatuses {
    				stat := po.Status.InitContainerStatuses[j]
    				result += stat.RestartCount
    			}
    			for j := range po.Status.ContainerStatuses {
    				stat := po.Status.ContainerStatuses[j]
    				result += stat.RestartCount
    			}
    		}
    	}
    	if *job.Spec.BackoffLimit == 0 {
    		return result > 0
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top