Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 558 for FILE (0.2 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    If the resource is not created via `project.resources`, then it may not have a backing file.
    Creating a TAR tree from a resource with no backing file has been deprecated.
    Instead, convert the resource to a file and use `project.tarTree()` on the file.
    To convert the resource to a file you can use a custom task or use dependency management to download the file via a URL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. 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)
  5. src/debug/elf/file_test.go

    	for i := range fileTests {
    		tt := &fileTests[i]
    
    		var f *File
    		var err error
    		if path.Ext(tt.file) == ".gz" {
    			var r io.ReaderAt
    			if r, err = decompress(tt.file); err == nil {
    				f, err = NewFile(r)
    			}
    		} else {
    			f, err = Open(tt.file)
    		}
    		if err != nil {
    			t.Errorf("cannot open file %s: %v", tt.file, err)
    			continue
    		}
    		defer f.Close()
    		if f.FileHeader != tt.hdr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `Signature.setFile(File)` method has been removed — Gradle does not support changing the output file for the generated signature.
     * The read-only `Signature.toSignArtifact` property has been removed — it should never have been part of the public API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    * Since Gradle 8.1, using many APIs related to the file system is correctly tracked as configuration inputs, including the file system checks, such as `File.exists()` or `File.isFile()`.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.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