Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 3,426 for directory1 (0.23 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/gitrepovolumesource.go

    }
    
    // WithDirectory sets the Directory field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Directory field is set to the value of the last call.
    func (b *GitRepoVolumeSourceApplyConfiguration) WithDirectory(value string) *GitRepoVolumeSourceApplyConfiguration {
    	b.Directory = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_go_file.txt

    [symlink] rm test_sym.go
    
    # argument has .go suffix, is a symlink and exists in sub-directory
    [symlink] symlink test/test_sym.go -> test.go
    [symlink] ! go get test/test_sym.go
    [symlink] stderr 'go: test/test_sym.go exists as a file, but ''go get'' requires package arguments'
    [symlink] rm test_sym.go
    
    # argument has .go suffix, is a directory and exists
    mkdir test_dir.go
    ! go get test_dir.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/InitSettings.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.file.Directory;
    import org.gradle.buildinit.InsecureProtocolOption;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_find.txt

    cd $GOPATH/src/example.com/x/y/z
    go mod init
    stderr 'unexpected.com/z'
    rm go.mod
    
    # Empty directory outside GOPATH fails.
    mkdir $WORK/empty
    cd $WORK/empty
    ! go mod init
    stderr 'cannot determine module path for source directory'
    rm go.mod
    
    # Empty directory inside GOPATH/src uses location inside GOPATH.
    mkdir $GOPATH/src/empty
    cd $GOPATH/src/empty
    go mod init
    stderr 'empty'
    rm go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/BuildDashboardGeneratorSpec.groovy

            Jsoup.parse(outputFile, null)
        }
    
        Report mockReport(String name, File destination) {
            def directory = Mock(Directory) {
                getAsFile() >> destination
            }
            def destinationProperty = Mock(DirectoryProperty) {
                get() >> directory
            }
            Stub(Report) {
                getDisplayName() >> name
                getOutputLocation() >> destinationProperty
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/os/path.go

    package os
    
    import (
    	"internal/filepathlite"
    	"syscall"
    )
    
    // MkdirAll creates a directory named path,
    // along with any necessary parents, and returns nil,
    // or else returns an error.
    // The permission bits perm (before umask) are used for all
    // directories that MkdirAll creates.
    // If path is already a directory, MkdirAll does nothing
    // and returns nil.
    func MkdirAll(path string, perm FileMode) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/misc/kotlin/build.gradle.kts

    tasks.register("ensureDirectory") {
        // Store target directory into a variable to avoid project reference in the configuration cache
        val directory = file("images")
    
        doLast {
            Files.createDirectories(directory.toPath())
        }
    }
    // end::mkdir-example[]
    
    // tag::move-example[]
    tasks.register("moveReports") {
        // Store the build directory into a variable to avoid project reference in the configuration cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 971 bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializerTest.groovy

            then:
            assertEqualSnapshots(out, snapshots)
        }
    
        def "reads and writes directory snapshot hierarchies"() {
            def snapshots = directory("/home/lptr/dev", [
                regularFile("/home/lptr/dev/one.txt"),
                regularFile("/home/lptr/dev/two.txt"),
                directory("/home/lptr/dev/empty", []),
                directory("/home/lptr/dev/sub", [
                    regularFile("/home/lptr/dev/sub/three.txt"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/os/path_windows.go

    			// Already extended with \\?\ or any combination of directory separators.
    			return path
    		}
    	}
    
    	// Do nothing (and don't allocate) if the path is "short".
    	// Empirically (at least on the Windows Server 2013 builder),
    	// the kernel is arbitrarily okay with < 248 bytes. That
    	// matches what the docs above say:
    	// "When using an API to create a directory, the specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/ProjectDirectoryProjectSpec.java

            if (!dir.exists()) {
                throw new InvalidUserDataException(String.format("Project directory '%s' does not exist.", dir));
            }
            if (!dir.isDirectory()) {
                throw new InvalidUserDataException(String.format("Project directory '%s' is not a directory.", dir));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.1K bytes
    - Viewed (0)
Back to top