Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 116 for 0o700 (0.05 sec)

  1. src/cmd/asm/internal/asm/testdata/s390x.s

    	TCEB	F5, $8                 // ed5000080010
    	TCDB	F15, $4095             // edf00fff0011
    
    	UNDEF                          // 00000000
    	BRRK			       // 0001
    	NOPH                           // 0700
    
    	SYNC                           // 07e0
    
    	KM	R2, R4                 // b92e0024
    	KMC	R2, R6                 // b92f0026
    	KLMD	R2, R8                 // b93f0028
    	KIMD	R0, R4                 // b93e0004
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, "01234567", 0, 0},
    	{_Literal, "0_1_234_567", 0, 0},
    	{_Literal, "0X0", 0, 0},
    	{_Literal, "0xcafebabe", 0, 0},
    	{_Literal, "0x_cafe_babe", 0, 0},
    	{_Literal, "0O0", 0, 0},
    	{_Literal, "0o000", 0, 0},
    	{_Literal, "0o_000", 0, 0},
    	{_Literal, "0B1", 0, 0},
    	{_Literal, "0b01100110", 0, 0},
    	{_Literal, "0b_0110_0110", 0, 0},
    	{_Literal, "0.", 0, 0},
    	{_Literal, "0.e0", 0, 0},
    	{_Literal, "0.e-1", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  3. src/path/filepath/path_windows_test.go

    	}
    }
    
    func testWinSplitListTestIsValid(t *testing.T, ti int, tt SplitListTest,
    	comspec string) {
    
    	const (
    		cmdfile             = `printdir.cmd`
    		perm    fs.FileMode = 0700
    	)
    
    	tmp := t.TempDir()
    	for i, d := range tt.result {
    		if d == "" {
    			continue
    		}
    		if cd := filepath.Clean(d); filepath.VolumeName(cd) != "" ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/deployment.go

    		if err != nil && !kerrors.IsAlreadyExists(err) {
    			return err
    		}
    	}
    
    	if err := os.WriteFile(path.Join(dir, "workloadgroup.yaml"), []byte(wg), 0o600); err != nil {
    		return err
    	}
    
    	ist, err := istio.Get(ctx)
    	if err != nil {
    		return err
    	}
    	// this will wait until the eastwest gateway has an IP before running the next command
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. src/time/example_test.go

    	// Output:
    	// 2013-02-03 19:54:00 -0800 PST
    	// 2013-02-03 00:00:00 +0000 UTC
    	// 2006-01-02 15:04:05 +0000 UTC
    	// 2006-01-02 15:04:05 +0700 +0700
    	// error parsing time "2006-01-02T15:04:05Z07:00": extra text: "07:00"
    }
    
    func ExampleParseInLocation() {
    	loc, _ := time.LoadLocation("Europe/Berlin")
    
    	// This will look for the name CEST in the Europe/Berlin time zone.
    	const longForm = "Jan 2, 2006 at 3:04pm (MST)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. src/syscall/fs_wasip1.go

    	// to expect the permission bits to not be zero so we set defaults to help
    	// avoid breaking applications that are migrating to WASM.
    	if st.Filetype == FILETYPE_DIRECTORY {
    		st.Mode = 0700
    	} else {
    		st.Mode = 0600
    	}
    }
    
    func Unlink(path string) error {
    	if path == "" {
    		return EINVAL
    	}
    	dirFd, pathPtr, pathLen := preparePath(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. cmd/admin-bucket-handlers.go

    	defer zipWriter.Close()
    
    	rawDataFn := func(r io.Reader, filename string, sz int) {
    		header, zerr := zip.FileInfoHeader(dummyFileInfo{
    			name:    filename,
    			size:    int64(sz),
    			mode:    0o600,
    			modTime: time.Now(),
    			isDir:   false,
    			sys:     nil,
    		})
    		if zerr == nil {
    			header.Method = zip.Deflate
    			zwriter, zerr := zipWriter.CreateHeader(header)
    			if zerr == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. pkg/auth/authorizer/abac/abac_test.go

    	if err != nil {
    		t.Fatalf("unexpected error creating policyfile: %v", err)
    	}
    	f.Close()
    	defer os.Remove(f.Name())
    
    	if err := ioutil.WriteFile(f.Name(), []byte(contents), 0700); err != nil {
    		t.Fatalf("unexpected error writing policyfile: %v", err)
    	}
    
    	pl, err := NewFromFile(f.Name())
    	return pl, err
    }
    
    func TestPolicy(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 40K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/tables11.0.0.go

    	0x6f6: 0x0008, 0x6f7: 0x0008, 0x6f8: 0x0008, 0x6f9: 0x0008, 0x6fa: 0x0040, 0x6fb: 0x0040,
    	0x6fc: 0x3308, 0x6fd: 0x0008, 0x6fe: 0x3008, 0x6ff: 0x3008,
    	// Block 0x1c, offset 0x700
    	0x700: 0x3008, 0x701: 0x3308, 0x702: 0x3308, 0x703: 0x3308, 0x704: 0x3308, 0x705: 0x3308,
    	0x706: 0x0040, 0x707: 0x3308, 0x708: 0x3308, 0x709: 0x3008, 0x70a: 0x0040, 0x70b: 0x3008,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 270.5K bytes
    - Viewed (0)
  10. src/path/filepath/path_test.go

    			t.Fatal(err)
    		}
    	}
    	bad := filepath.Join(dir, "a", "bad")
    	if err := os.Chmod(bad, 0); err != nil {
    		t.Fatal(err)
    	}
    	defer os.Chmod(bad, 0700) // avoid errors on cleanup
    	var saw []string
    	err := filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error {
    		if err != nil {
    			return filepath.SkipDir
    		}
    		if d.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top