Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 947 for directory1 (0.44 sec)

  1. 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)
  2. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    TFSavedModelAPI::TFSavedModelAPI(const std::string& directory,
                                     SavedModelV2Bundle bundle,
                                     RevivedObjects revived_objects)
        : directory_(directory),
          bundle_(std::move(bundle)),
          revived_objects_(std::move(revived_objects)) {}
    
    Status TFSavedModelAPI::Load(
        const std::string& directory,
        const absl::optional<std::unordered_set<std::string>>& tags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        /**
         * <p>Returns the settings directory of the build. The settings directory is the directory containing the settings
         * file.</p>
         *
         * @return The settings directory. Never returns null.
         */
        File getSettingsDir();
    
        /**
         * <p>Returns the root directory of the build. The root directory is the project directory of the root project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. pom.xml

    						<!-- logs (empty) -->
    						<mapping>
    							<directory>${packaging.fess.log.dir}</directory>
    						</mapping>
    						<!-- temp (empty) -->
    						<mapping>
    							<directory>${packaging.fess.temp.dir}</directory>
    						</mapping>
    						<!-- dictionary (empty) -->
    						<mapping>
    							<directory>${packaging.fess.dictionary.dir}</directory>
    							<filemode>755</filemode>
    							<username>opensearch</username>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

                    <jar destfile="${basedir}/target/test-classes/${test.projects.repository}/${test.projects.target.directory}/${test.projects.archetype}.jar" basedir="${basedir}/src/test/archetypes/${test.projects.source.directory}/" />
                  </tasks>
                </configuration>
                <goals>
                  <goal>run</goal>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 08:59:31 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_outside.txt

    # 'go build' without arguments implicitly operates on the current directory, and should fail.
    cd needmod
    ! go build
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    cd ..
    
    # 'go build' of a non-module directory should fail too.
    ! go build ./needmod
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

            }
        },
        INPUT_DIRECTORY_VALIDATOR("directory") {
            @Override
            public void doValidate(String propertyName, Object value, PropertyValidationContext context) {
                File directory = toDirectory(context, value);
                if (!directory.exists()) {
                    reportMissingInput(context, "Directory", propertyName, directory);
                } else if (!directory.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/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
    - 10.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

            private final String path;
    
            public PathToDirectoryTransformer(String path) {
                this.path = path;
            }
    
            @Override
            public Directory transform(Directory directory) {
                return directory.dir(path);
            }
        }
    
        private static class ToFileTransformer implements Transformer<File, FileSystemLocation> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top