Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 980 for directory1 (0.2 sec)

  1. cmd/server_test.go

    	c.Assert(err, nil)
    
    	// execute the HTTP request to create bucket.
    	response, err := s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, 200)
    
    	objectName := "directory1/directory2/object"
    	// construct HTTP request to initiate a NewMultipart upload.
    	request, err = newTestSignedRequest(http.MethodPost, getNewMultipartURL(s.endPoint, bucketName, objectName),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  2. src/os/tempfile.go

    }
    
    // MkdirTemp creates a new temporary directory in the directory dir
    // and returns the pathname of the new directory.
    // The new directory's name is generated by adding a random string to the end of pattern.
    // If pattern includes a "*", the random string replaces the last "*" instead.
    // The directory is created with mode 0o700 (before umask).
    // If dir is the empty string, MkdirTemp uses the default directory for temporary files, as returned by TempDir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/os/removeall_at.go

    	})
    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// EISDIR means that we have a directory, and we need to
    	// remove its contents.
    	// EPERM or EACCES means that we don't have write permission on
    	// the parent directory, but this entry might still be a directory
    	// whose contents need to be removed.
    	// Otherwise just return the error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/path/filepath/path.go

    // file or directory.
    //
    // The path argument contains the argument to Walk as a prefix.
    // That is, if Walk is called with root argument "dir" and finds a file
    // named "a" in that directory, the walk function will be called with
    // argument "dir/a".
    //
    // The directory and file are joined with Join, which may clean the
    // directory name: if Walk is called with the root argument "x/../dir"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/io/ioutil/ioutil.go

    	return os.WriteFile(filename, data, perm)
    }
    
    // ReadDir reads the directory named by dirname and returns
    // a list of fs.FileInfo for the directory's contents,
    // sorted by filename. If an error occurs reading the directory,
    // ReadDir returns no directory entries along with the error.
    //
    // Deprecated: As of Go 1.16, [os.ReadDir] is a more efficient and correct choice:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/testing/fstest/mapfs.go

    	}
    
    	// Directory, possibly synthesized.
    	// Note that file can be nil here: the map need not contain explicit parent directories for all its files.
    	// But file can also be non-nil, in case the user wants to set metadata for the directory explicitly.
    	// Either way, we need to construct the list of children of this directory.
    	var list []mapFileInfo
    	var elem string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/clean/clean.go

    The go command builds most objects in a temporary directory,
    so go clean is mainly concerned with object files left by other
    tools or by manual invocations of go build.
    
    If a package argument is given or the -i or -r flag is set,
    clean removes the following files from each of the
    source directories corresponding to the import paths:
    
    	_obj/            old object directory, left from Makefiles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

        <resources>
          <resource>
            <directory>${project.basedir}/src/main/resources</directory>
          </resource>
          <resource>
            <directory>${project.basedir}/src/main/resources-filtered</directory>
            <filtering>true</filtering>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>${project.basedir}/src/test/resources</directory>
          </testResource>
          <testResource>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.0.0.xml

        <resources>
          <resource>
            <directory>${project.basedir}/src/main/resources</directory>
          </resource>
          <resource>
            <directory>${project.basedir}/src/main/resources-filtered</directory>
            <filtering>true</filtering>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>${project.basedir}/src/test/resources</directory>
          </testResource>
          <testResource>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/os/dir.go

    // explaining why. At the end of a directory, the error is [io.EOF].
    //
    // If n <= 0, Readdir returns all the FileInfo from the directory in
    // a single slice. In this case, if Readdir succeeds (reads all
    // the way to the end of the directory), it returns the slice and a
    // nil error. If it encounters an error before the end of the
    // directory, Readdir returns the FileInfo read until that point
    // and a non-nil error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top