Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for Z0700 (0.03 sec)

  1. src/time/export_test.go

    	stdISO8601TZ:                    "Z0700",
    	stdISO8601SecondsTZ:             "Z070000",
    	stdISO8601ShortTZ:               "Z07",
    	stdISO8601ColonTZ:               "Z07:00",
    	stdISO8601ColonSecondsTZ:        "Z07:00:00",
    	stdNumTZ:                        "-0700",
    	stdNumSecondsTz:                 "-070000",
    	stdNumShortTZ:                   "-07",
    	stdNumColonTZ:                   "-07:00",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 19:23:32 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. src/time/format.go

    			}
    			if len(layout) >= i+5 && layout[i:i+5] == "-0700" {
    				return layout[0:i], stdNumTZ, layout[i+5:]
    			}
    			if len(layout) >= i+6 && layout[i:i+6] == "-07:00" {
    				return layout[0:i], stdNumColonTZ, layout[i+6:]
    			}
    			if len(layout) >= i+3 && layout[i:i+3] == "-07" {
    				return layout[0:i], stdNumShortTZ, layout[i+3:]
    			}
    
    		case 'Z': // Z070000, Z07:00:00, Z0700, Z07:00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. releasenotes/notes/50700.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50700
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 217 bytes
    - Viewed (0)
  4. src/cmd/go/internal/fsys/fsys_test.go

    					t.Errorf("name of file #%v in walk, got %q, want %q", i, got[i].name, tc.wantFiles[i].name)
    				}
    				if got[i].mode&(fs.ModeDir|0700) != tc.wantFiles[i].mode {
    					t.Errorf("mode&(fs.ModeDir|0700) for mode of file #%v in walk, got %v, want %v", i, got[i].mode&(fs.ModeDir|0700), tc.wantFiles[i].mode)
    				}
    				if got[i].isDir != tc.wantFiles[i].isDir {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/PosixFilePermissionConverterTest.groovy

            EnumSet.allOf(PosixFilePermission)                                   |       0777
            EnumSet.of(OWNER_READ, OWNER_WRITE, OWNER_EXECUTE)                   |       0700
            EnumSet.of(OWNER_READ, GROUP_READ, GROUP_WRITE, GROUP_EXECUTE)       |       0470
            EnumSet.of(OWNER_READ, GROUP_READ, OTHERS_READ)                      |       0444
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/toolchain/umask_none.go

    // license that can be found in the LICENSE file.
    
    //go:build !(darwin || freebsd || linux || netbsd || openbsd)
    
    package toolchain
    
    import "io/fs"
    
    func sysWriteBits() fs.FileMode {
    	return 0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:44:08 UTC 2023
    - 307 bytes
    - Viewed (0)
  7. src/internal/sysinfo/cpuinfo_linux.go

    	if cpuMHz == "" {
    		return modelName
    	}
    
    	// The modelName field already contains the frequency information,
    	// so the cpuMHz field information is not needed.
    	// modelName filed example:
    	//	Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz
    	f := [...]string{"GHz", "MHz"}
    	for _, v := range f {
    		if strings.Contains(modelName, v) {
    			return modelName
    		}
    	}
    
    	return modelName + " @ " + cpuMHz + "MHz"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/os/exec/lp_unix_test.go

    	"os/exec"
    	"testing"
    )
    
    func TestLookPathUnixEmptyPath(t *testing.T) {
    	// Not parallel: uses Chdir and Setenv.
    
    	tmp := t.TempDir()
    	chdir(t, tmp)
    
    	f, err := os.OpenFile("exec_me", os.O_CREATE|os.O_EXCL, 0700)
    	if err != nil {
    		t.Fatal("OpenFile failed: ", err)
    	}
    	err = f.Close()
    	if err != nil {
    		t.Fatal("Close failed: ", err)
    	}
    
    	t.Setenv("PATH", "")
    
    	path, err := exec.LookPath("exec_me")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 762 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/etcd/etcddata.go

    	"os"
    
    	"github.com/pkg/errors"
    )
    
    // CreateDataDirectory creates the etcd data directory (commonly /var/lib/etcd) with the right permissions.
    func CreateDataDirectory(dir string) error {
    	if err := os.MkdirAll(dir, 0700); err != nil {
    		return errors.Wrapf(err, "failed to create the etcd data directory: %q", dir)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 03 15:38:54 UTC 2020
    - 927 bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/settings.go

    		return fmt.Errorf("could not encode settings: %w", err)
    	}
    
    	// create the settings directory if it does not exist
    	// XDG specifies permissions 0700 when creating settings dirs:
    	// https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
    	if err := os.MkdirAll(filepath.Dir(fname), 0700); err != nil {
    		return fmt.Errorf("failed to create settings directory: %w", err)
    	}
    
    	if err := os.WriteFile(fname, data, 0644); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top