Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,426 for directory_ (0.28 sec)

  1. 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)
  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. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `-g`, `--gradle-user-home`::
    Specifies the Gradle User Home directory. The default is the `.gradle` directory in the user's home directory.
    
    `-p`, `--project-dir`::
    Specifies the start directory for Gradle. Defaults to current directory.
    
    `--project-cache-dir`::
    Specifies the project-specific cache directory. Default value is `.gradle` in the root project directory.
    
    `-D`, `--system-prop`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    [[sec:custom_java_source_set_paths]]
    === Customizing file and directory locations
    
    Imagine you have a legacy project that uses an _src_ directory for the production code and _test_ for the test code. The conventional directory structure won't work, so you need to tell Gradle where to find the source files. You do that via source set configuration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/Directory.java

         * Returns a {@link Directory} whose location is the given path, resolved relative to this directory.
         *
         * @param path The path. Can be absolute.
         * @return The directory.
         */
        Directory dir(String path);
    
        /**
         * Returns a {@link Provider} whose value is a {@link Directory} whose location is the given path resolved relative to this directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:52:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            def html = """
            <a href="directory1">directory1</a>
            <a href="directory2">directory2</a>
            <a href="directory3">directory3</a>
            <a href="directory4"/>"""
            expect:
            def uris = parser.parse(baseUrl, new ByteArrayInputStream(html.bytes), CONTENT_TYPE)
            assertNotNull(uris)
            uris.collect { it.toString() } == ["directory1", "directory2", "directory3", "directory4"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment.xml

        <resources>
          <resource>
            <directory>src/test</directory>
            <includes>
              <include>**/*.xml</include>
            </includes>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>src/conf</directory>
            <includes>
              <include>*.xsd</include>
              <include>*.dtd</include>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 3.6K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-parent.xml

      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>Flat directory structure case: module = ../child directory path + child directory path != child-artifact-id</description>
    
      <modules>
        <module>../inheritance</module><!-- current directory == inheritance -->
      </modules>
    
      <!-- 5 urls in the pom will be inherited with path added -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-expected.xml

      <groupId>inheritance</groupId>
      <artifactId>child-artifact-id</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
      <description>Flat directory structure case: module = ../child directory path + child directory path != child-artifact-id</description>
    
      <!-- 5 inherited urls with ../${project.artifactId} added to parent -->
      <url>http://www.apache.org/path/to/parent/../child-artifact-id/</url>
      <scm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/projects/base-directory-alignment/subproject/project-which-needs-directory-alignment-child.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
    
      <extend>../project-which-needs-directory-alignment.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>project-which-needs-directory-alignment</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 1011 bytes
    - Viewed (0)
Back to top