Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 942 for directory1 (0.15 sec)

  1. pkg/volume/util/atomic_writer.go

    //
    //  6. The payload is written to the new timestamped directory.
    //
    //  7. Permissions are set (if setPerms is not nil) on the new timestamped directory and files.
    //
    //  8. A symlink to the new timestamped directory ..data_tmp is created that will
    //     become the new data directory.
    //
    //  9. The new data directory symlink is renamed to the data directory; rename is atomic.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/static/css/all.css

        width: 100%;
        font-size: 85%
    }
    
    .sidebar .directory li .current {
        color: #de7d40;
        font-weight: 500
    }
    
    .sidebar .directory li.sublist {
        padding-left: 0
    }
    
    .sidebar .directory li.sublist i {
        width: 12px
    }
    
    .sidebar .directory .card-body {
        padding: .5em .1em
    }
    
    .sidebar .directory .card-body > ul {
        padding-left: 0
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            }
        }
    }
    """
            // directory header starts out as a directory
            def directoryHeader = file("src/other/directory")
            directoryHeader.mkdirs()
            // this is the a header file named 'directory'
            file("src/main/headers/directory") << '#pragma message("including directory named header")'
    
            sourceFile << """
                #include "directory"
    """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/fsys/fsys.go

    // that the argument is not a directory, so that IsDirWithGoFiles doesn't
    // return an error.
    var errNotDir = errors.New("not a directory")
    
    func nonFileInOverlayError(overlayPath string) error {
    	return fmt.Errorf("replacement path %q is a directory, not a file", overlayPath)
    }
    
    // readDir reads a dir on disk, returning an error that is errNotDir if the dir is not a directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. guava-gwt/pom.xml

          <resource>
            <directory>${project.build.directory}/guava-gwt-sources</directory>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
          </testResource>
          <testResource>
            <directory>test-super</directory>
          </testResource>
          <testResource>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

                }
    
                if (!parentDirToCreate.mkdir() && !parentDirToCreate.isDirectory()) {
                    throw new UncheckedIOException(String.format("Failed to create parent directory '%s' when creating directory '%s'", parentDirToCreate, dir));
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_getters.go

    }
    
    // getCheckpointsDir returns a data directory name for checkpoints.
    // Checkpoints can be stored in this directory for further use.
    func (kl *Kubelet) getCheckpointsDir() string {
    	return filepath.Join(kl.getRootDir(), config.DefaultKubeletCheckpointsDirName)
    }
    
    // getVolumeDevicePluginsDir returns the full path to the directory under which plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

        }
    
        def "creates directory in place of file"() {
            given:
            TestFile dir = tmpDir.getTestDirectory()
            def file = dir.file("someFile").createFile()
    
            when:
            boolean didWork = deleter.ensureEmptyDirectory(file)
    
            then:
            file.assertIsDir()
            didWork
        }
    
        def "creates directory if nothing existed before"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFilePropertyFactoryTest.groovy

            dirVar.set(dir3)
            tree.files == [] as Set
        }
    
        def "Directory.files are relative to the directory"() {
            def baseDir = tmpDir.createDir("base")
            def directory = factory.dir(baseDir)
    
            expect:
            directory.files("file1", "file2").files ==~ [baseDir.file("file1"), baseDir.file("file2")]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/DefaultGradleRunnerTest.groovy

        }
    
        def "throws exception if working directory is not provided when build is requested"() {
            when:
            createRunner().build()
    
            then:
            def t = thrown(InvalidRunnerConfigurationException)
            t.message == 'Please specify a project directory before executing the build'
        }
    
        def "throws exception if working directory is not provided when run is requested"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top