Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 152 for 0377 (0.05 sec)

  1. src/os/os_unix_test.go

    func TestMkdirStickyUmask(t *testing.T) {
    	if runtime.GOOS == "wasip1" {
    		t.Skip("file permissions not supported on " + runtime.GOOS)
    	}
    	t.Parallel()
    
    	const umask = 0077
    	dir := newDir("TestMkdirStickyUmask", t)
    	defer RemoveAll(dir)
    
    	oldUmask := syscall.Umask(umask)
    	defer syscall.Umask(oldUmask)
    
    	// We have set a umask, but if the parent directory happens to have a default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/os/exec/dot_test.go

    	}
    	return "PATH"
    }()
    
    func TestLookPath(t *testing.T) {
    	testenv.MustHaveExec(t)
    	// Not parallel: uses Chdir and Setenv.
    
    	tmpDir := filepath.Join(t.TempDir(), "testdir")
    	if err := os.Mkdir(tmpDir, 0777); err != nil {
    		t.Fatal(err)
    	}
    
    	executable := "execabs-test"
    	if runtime.GOOS == "windows" {
    		executable += ".exe"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubeletconfig/configfiles/configfiles_test.go

    			if c.skipOnWindows && goruntime.GOOS == "windows" {
    				t.Skip("Skipping test that fails on Windows")
    			}
    
    			fs := utilfs.NewTempFs()
    			fs.MkdirAll(configDir, 0777)
    			path := filepath.Join(configDir, kubeletFile)
    			if c.file != nil {
    				if err := addFile(fs, path, *c.file); err != nil {
    					t.Fatalf("unexpected error: %v", err)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/image/image_test.go

    			tc.SetRGBA64(1, 1, color.RGBA64{0x7FFF, 0x3FFF, 0x0000, 0x7FFF})
    
    		case *NYCbCrA:
    			memset(tc.YCbCr.Y, 0x77)
    			memset(tc.YCbCr.Cb, 0x88)
    			memset(tc.YCbCr.Cr, 0x99)
    			memset(tc.A, 0xAA)
    
    		case *Uniform:
    			tc.C = color.RGBA64{0x7FFF, 0x3FFF, 0x0000, 0x7FFF}
    
    		case *YCbCr:
    			memset(tc.Y, 0x77)
    			memset(tc.Cb, 0x88)
    			memset(tc.Cr, 0x99)
    
    		case Rectangle:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  5. src/crypto/rc4/rc4_test.go

    		[]byte{0xd6, 0xa1, 0x41, 0xa7, 0xec, 0x3c, 0x38, 0xdf, 0xbd, 0x61},
    	},
    
    	// Test vectors from the Wikipedia page: https://en.wikipedia.org/wiki/RC4
    	{
    		[]byte{0x4b, 0x65, 0x79},
    		[]byte{0xeb, 0x9f, 0x77, 0x81, 0xb7, 0x34, 0xca, 0x72, 0xa7, 0x19},
    	},
    	{
    		[]byte{0x57, 0x69, 0x6b, 0x69},
    		[]byte{0x60, 0x44, 0xdb, 0x6d, 0x41, 0xb7},
    	},
    	{
    		[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
    		[]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 21 19:49:06 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    \306\324\245\\;\316?/\006)\272\343\307\344?\301\251md\364d\350?h9\361\0069\332\311?\333\260\350\306.\242\352?\006\203,\246\037Q\352?\326dos\222/\351?\315\245UTX,\345?\331!\271\227{\350\351?hR0\373\234\326\302?d\214G\037\275q\327?\352Mu\362\000\214\343?I\353\23354\"\350?\360\3602\3128\'\354?\264,\337\216\001j\341?\366\203\354Z7\275\325?\272\ne\034\226\221\345?\362\365|h\037E\326?V\024\256\201\356\374\354?\004C*I\236H\315?\030\030\234);2\271?`\343\271\007v\233\224?3\035.\367b1\357?\300N#$\'\266\27...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  7. cmd/os-reliable.go

    // syscall.ENOENT (parent does not exist).
    func reliableMkdirAll(dirPath string, mode os.FileMode, baseDir string) (err error) {
    	i := 0
    	for {
    		// Creates all the parent directories, with mode 0777 mkdir honors system umask.
    		if err = osMkdirAll(dirPath, mode, baseDir); err != nil {
    			// Retry only for the first retryable error.
    			if osIsNotExist(err) && i == 0 {
    				i++
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    	0x6a, 0xf5, 0x2d, 0x7c, 0x2a, 0x76, 0xf9, 0x47, 0xa4, 0xa5, 0xba, 0xf2, 0x6d, 0x77, 0xe6, 0xfb,
    	0xbe, 0x19, 0xcd, 0x0e, 0x67, 0x84, 0x5e, 0xf4, 0x5f, 0x86, 0x9a, 0xc3, 0x74, 0xea, 0x3b, 0x21,
    	0x04, 0x23, 0x08, 0x74, 0xbf, 0xdf, 0x95, 0x37, 0x1d, 0x7e, 0xa2, 0xae, 0x3f, 0x00, 0x7d, 0x74,
    	0xa8, 0x77, 0xc1, 0x83, 0x80, 0x72, 0xb0, 0x35, 0x3f, 0x60, 0x9c, 0xe1, 0xa7, 0x11, 0x4b, 0x4b,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/state.go

    		name := s.Path(s.ExpandEnv(f.Name, false))
    
    		if !strings.HasPrefix(name, wd) {
    			return fmt.Errorf("file %#q is outside working directory", f.Name)
    		}
    
    		if err := os.MkdirAll(filepath.Dir(name), 0777); err != nil {
    			return err
    		}
    		if err := os.WriteFile(name, f.Data, 0666); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/events/v1beta1/generated.pb.go

    	0x33, 0x94, 0xcc, 0x0b, 0xc8, 0x8a, 0xaa, 0xf7, 0xc7, 0x6c, 0x23, 0xaf, 0xa6, 0xbd, 0x9a, 0x96,
    	0x26, 0x8d, 0x29, 0x4c, 0x3a, 0xb5, 0x1a, 0xfe, 0xa0, 0xa1, 0xcd, 0x2c, 0x79, 0xca, 0x86, 0x3b,
    	0x59, 0xfd, 0xe9, 0x4e, 0x2a, 0x69, 0x27, 0x9b, 0x8d, 0xc9, 0x48, 0x3a, 0xad, 0x16, 0x3e, 0x40,
    	0x6b, 0x59, 0xea, 0x90, 0x77, 0x7c, 0x49, 0xd6, 0xaa, 0x5a, 0x3d, 0x6f, 0x6d, 0xa6, 0xc8, 0xb5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top