Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 243 for FILE (0.12 sec)

  1. src/cmd/dist/build.go

    	bdst := bytes.NewBufferString(readfile(src))
    	for _, file := range extra {
    		b := readfile(file)
    		// find last path element for archive member name
    		i := strings.LastIndex(file, "/") + 1
    		j := strings.LastIndex(file, `\`) + 1
    		if i < j {
    			i = j
    		}
    		fmt.Fprintf(bdst, "%-16.16s%-12d%-6d%-6d%-8o%-10d`\n", file[i:], 0, 0, 0, 0644, len(b))
    		bdst.WriteString(b)
    		if len(b)&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter_test.go

    				t.Error("volume data file unexpected specVolID:", data[volDataKey.specVolID])
    			}
    			if data[volDataKey.volHandle] != csiMounter.volumeID {
    				t.Error("volume data file unexpected volHandle:", data[volDataKey.volHandle])
    			}
    			if data[volDataKey.driverName] != string(csiMounter.driverName) {
    				t.Error("volume data file unexpected driverName:", data[volDataKey.driverName])
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[unix_file_permissions_deprecated]]
    ==== Unix mode based file permissions deprecated ====
    
    A new API for defining file permissions has been added in Gradle 8.3, see:
    
    - link:{javadocPath}/org/gradle/api/file/FilePermissions.html[FilePermissions].
    - link:{javadocPath}/org/gradle/api/file/ConfigurableFilePermissions.html[ConfigurableFilePermissions].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    		{"go1.20.1", "go1.20", "go1.20.1"},   // file upgrade ignored
    		{"go1.20.1", "go1.21", "go1.21"},     // file upgrade permitted
    		{"go1.20.1", "go1.19", "go1.20.1"},   // file downgrade not permitted
    		{"go1.21.1", "go1.19.1", "go1.21.1"}, // file downgrade not permitted (invalid file version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. cmd/erasure-healing_test.go

    		t.Fatal(err)
    	}
    
    	// After heal the meta file should be as expected.
    	if !fileInfoPreHeal1.Equals(fileInfoPostHeal1) {
    		t.Fatal("HealObject failed")
    	}
    
    	fileInfoPostHeal2, err = disk.ReadVersion(context.Background(), "", bucket, object, "", ReadOptions{ReadData: false, Healing: true})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// After heal the meta file should be as expected.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    		{"go1.20.1", "go1.20", "go1.20.1"},   // file upgrade ignored
    		{"go1.20.1", "go1.21", "go1.21"},     // file upgrade permitted
    		{"go1.20.1", "go1.19", "go1.20.1"},   // file downgrade not permitted
    		{"go1.21.1", "go1.19.1", "go1.21.1"}, // file downgrade not permitted (invalid file version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. src/testing/testing.go

    // decorate prefixes the string with the file and line of the call site
    // and inserts the final newline if needed and indentation spaces for formatting.
    // This function must be called with c.mu held.
    func (c *common) decorate(s string, skip int) string {
    	frame := c.frameSkip(skip)
    	file := frame.File
    	line := frame.Line
    	if file != "" {
    		if *fullPath {
    			// If relative path, truncate file name at last file name separator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/go/build/build.go

    // shouldBuild reports whether it is okay to use this file,
    // The rule is that in the file's leading run of // comments
    // and blank lines, which must be followed by a blank line
    // (to avoid including a Go package clause doc comment),
    // lines beginning with '//go:build' are taken as build directives.
    //
    // The file is accepted only if each such line lists something
    // matching the file. For example:
    //
    //	//go:build windows linux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

          --v="${LOG_LEVEL}" \
          --vmodule="${LOG_SPEC}" \
          --service-account-private-key-file="${SERVICE_ACCOUNT_KEY}" \
          --service-cluster-ip-range="${SERVICE_CLUSTER_IP_RANGE}" \
          --root-ca-file="${ROOT_CA_FILE}" \
          --cluster-signing-cert-file="${CLUSTER_SIGNING_CERT_FILE}" \
          --cluster-signing-key-file="${CLUSTER_SIGNING_KEY_FILE}" \
          --enable-hostpath-provisioner="${ENABLE_HOSTPATH_PROVISIONER}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    	}
    	// Obtain Kubelet Lock File
    	if s.ExitOnLockContention && s.LockFilePath == "" {
    		return errors.New("cannot exit on lock file contention: no lock file specified")
    	}
    	done := make(chan struct{})
    	if s.LockFilePath != "" {
    		klog.InfoS("Acquiring file lock", "path", s.LockFilePath)
    		if err := flock.Acquire(s.LockFilePath); err != nil {
    			return fmt.Errorf("unable to acquire file lock on %q: %w", s.LockFilePath, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top