Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,426 for directory1 (0.41 sec)

  1. 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)
  2. src/cmd/cgo/internal/swig/testdata/callback/main.swigcxx

       license that can be found in the LICENSE file.  */
    
    /* An example of writing a C++ virtual function in Go.  */
    
    %module(directors="1") callback
    
    %{
    #include <string>
    #include "main.h"
    %}
    
    %include "std_string.i"
    
    %feature("director");
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 366 bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.h

      SavedModelV2Bundle* GetBundle() override;
    
     private:
      TFSavedModelAPI(const std::string& directory, SavedModelV2Bundle bundle,
                      RevivedObjects revived_objects);
    
      std::string directory_;
      SavedModelV2Bundle bundle_;
      RevivedObjects revived_objects_;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/assemblies/common-bin.xml

    			</includes>
    		</fileSet>
    
    		<!-- lib -->
    		<fileSet>
    			<directory>${project.build.directory}/tomcat-lib</directory>
    			<outputDirectory>fess-${project.version}/lib/classes</outputDirectory>
    		</fileSet>
    		<fileSet>
    			<directory>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/</directory>
    			<includes>
    				<include>FessBoot**</include>
    				<include>tomcat/**</include>
    			</includes>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 17 02:29:43 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. maven-model-builder/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: Mon Jun 19 15:04:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/DirectoryProperty.java

        DirectoryProperty convention(Provider<? extends Directory> provider);
    
        /**
         * Returns a {@link Directory} whose value is the given path resolved relative to the value of this directory.
         *
         * @param path The path. Can be absolute.
         * @return The directory.
         */
        Provider<Directory> dir(String path);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 10 18:00:11 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top