Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for setVariable (0.18 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                throw new GradleException("Using a Groovy compiler configuration script requires Groovy 2.1+ but found Groovy " + version + "");
            }
            Binding binding = new Binding();
            binding.setVariable("configuration", configuration);
    
            CompilerConfiguration configuratorConfig = new CompilerConfiguration();
            ImportCustomizer customizer = new ImportCustomizer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. test-site/activator-launch-1.3.2.jar

    a.io.File); private void setDeprecatedVariabl(String, String); public final void setSettingsVariables(java.net.URL); private void dumpSettings(); public final void loadProperties(java.net.URL, boolean); public final void setVariable(String, String); public final void setVariable(String, String, boolean); private void addAllVariables(java.util.Map, boolean); public final String substitute(String); public final IvyVariableContainer getVariables(); public final Class typeDef(String, String); private...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top