Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for tag_name (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

            exported_model_signatures=["serving_default"],
            tag_names=["serve"],
            input_arg_shapes_str="1,28,28,3::32"
    )
    
    ```
    
    #### Arguments:
    
    * `input_path` (required): Path to your SavedModel directory.
    * `exported_model_signatures` (optional): List of signature names to convert.
                                              Defaults to ["serving_default"].
    * `tag_names` (optional): List of tags associated with the SavedModel. Defaults
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventCrossVersionTest.groovy

        def "generates build phase events for task #taskName and expects #expectedReportedTasksCount run tasks"() {
            setupProject()
    
            when:
            def events = ProgressEvents.create()
            withConnection {
                it.newBuild().forTasks(taskName)
                    .addProgressListener(events, OperationType.BUILD_PHASE)
                    .run()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 10:41:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

        llvm::cl::desc(
            "Comma-separated list of exported model signatures to convert"),
        llvm::cl::Optional, llvm::cl::init("serving_default"));
    
    // NOLINTNEXTLINE
    opt<std::string> tag_names(
        "tags",
        llvm::cl::desc("Comma-separated list of tags for loading SavedModel. "
                       "Ignored for MLIR input"),
        llvm::cl::Optional, llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

    import jetbrains.buildServer.configs.kotlin.buildFeatures.parallelTests
    import jetbrains.buildServer.configs.kotlin.buildFeatures.pullRequests
    import model.CIBuildModel
    import model.StageName
    
    fun checkCleanDirUnixLike(dir: String, exitOnFailure: Boolean = true) = """
        REPO=$dir
        if [ -e ${'$'}REPO ] ; then
            tree ${'$'}REPO
            rm -rf ${'$'}REPO
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

        class TaskWithSources {
            String outputDir = "build/output"
            File inputFile = file('src/data/input.txt')
            String taskName = 'test'
    
            String getBuildScript() {
                """
                    apply plugin: 'base'
    
                    task ${taskName} {
                        def sources = file("src")
                        inputs.dir sources skipWhenEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/DaemonJvmPropertiesConfigurator.java

    public class DaemonJvmPropertiesConfigurator implements ProjectConfigureAction {
    
        public static final String TASK_NAME = "updateDaemonJvm";
    
        @Override
        public void execute(ProjectInternal project) {
            // Only useful for the root project
            if (project.getParent() == null) {
                project.getTasks().register(TASK_NAME, UpdateDaemonJvm.class, task -> {
                    task.setGroup("Build Setup");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            }
        }
    
        private void executeTaskViaGradleProjectLaunchable(String taskName) {
            withConnection { connection ->
                def gradleProjects = connection.action(new LoadCompositeModel(GradleProject)).run()
                def launchables = findLaunchables(gradleProjects, taskName)
                assert launchables.size == 1
                def build = connection.newBuild()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/TaskSelector.java

    @ServiceScope(Scope.BuildTree.class)
    public interface TaskSelector {
        Spec<Task> getFilter(SelectionContext context, ProjectState project, String taskName, boolean selectAllMatching);
    
        TaskSelection getSelection(SelectionContext context, ProjectState project, String taskName, boolean selectAllMatching);
    
        class SelectionContext {
            private final Path originalPath;
            private final String type;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. docs/de/docs/external-links.md

    {% for section_name, section_content in external_links.items() %}
    
    ## {{ section_name }}
    
    {% for lang_name, lang_content in section_content.items() %}
    
    ### {{ lang_name }}
    
    {% for item in lang_content %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 21 22:23:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

                return true;
            }
            return false;
        }
    
        public void addChildUrlRule(final String tagName, final String attrName) {
            if (StringUtil.isNotBlank(tagName) && StringUtil.isNotBlank(attrName)) {
                childUrlRuleMap.put(tagName, attrName);
            }
        }
    
        protected XPathAPI getXPathAPI() {
            XPathAPI cachedXPathAPI = xpathAPI.get();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top