Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for GetVariable (0.35 sec)

  1. testing/performance/src/templates/project-with-source/gradle.properties

    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  2. testing/performance/src/templates/root-project/gradle.properties

    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  3. testing/performance/src/templates/gradle-properties/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 349 bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-plugin-performance/src/templates/root/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 349 bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.h

          const absl::optional<std::unordered_set<std::string>>& tags,
          ImmediateExecutionContext* context,
          std::unique_ptr<TFSavedModelAPI>* out);
    
      ~TFSavedModelAPI() override = default;
    
      Status GetVariable(const std::string& variable_path, Variable** variable);
    
      SavedModelV2Bundle* GetBundle() override;
    
     private:
      TFSavedModelAPI(const std::string& directory, SavedModelV2Bundle bundle,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/BasicScript.java

            }
    
            @Override
            public DynamicInvokeResult tryGetProperty(String property) {
                if (binding.hasVariable(property)) {
                    return DynamicInvokeResult.found(binding.getVariable(property));
                }
                DynamicInvokeResult result = scriptObject.tryGetProperty(property);
                if (result.isFound()) {
                    return result;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      tensorflow::Variable* uninitialized_variable;
      ASSERT_EQ(absl::OkStatus(), model_api->GetVariable("uninitialized_variable",
                                                         &uninitialized_variable));
      ASSERT_EQ(tensorflow::DT_FLOAT, uninitialized_variable->dtype());
    
      ASSERT_EQ(absl::OkStatus(),
                model_api->GetVariable("sub_module.uninitialized_variable",
                                       &uninitialized_variable));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

            signature_def_key, " despite key being valid.");
      }
    
      *function = function_iter->second.get();
      return Status();
    }
    
    Status TFSavedModelAPI::GetVariable(const std::string& variable_path,
                                        Variable** variable) {
      absl::optional<int> node =
          internal::FindNodeAtPath(variable_path, bundle_.saved_object_graph());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

        }
    
        @Override
        public void visitCatchStatement(CatchStatement cs) {
            resolveOrFail(cs.getExceptionType(), cs);
            if (cs.getExceptionType() == ClassHelper.OBJECT_TYPE) {
                cs.getVariable().setType(ClassHelper.make(Exception.class));
            }
            super.visitCatchStatement(cs);
        }
    
        @Override
        public void visitForLoop(ForStatement forLoop) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. test-site/activator-launch-1.3.2.jar

    implements IvyVariableContainer { private java.util.Map variables; private String envPrefix; public void IvyVariableContainer(); public void IvyVariableContainer(java.util.Map); public final void setVariable(String, String, boolean); public final void setEnvironmentPrefix(String); public final String getVariable(String); public final Object clone(); } org/apache/ivy/core/settings/IvySettings$ModuleSettings.class package org.apache.ivy.core.settings; final synchronized class IvySettings$ModuleSettings...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top