Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for outputPath (0.2 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXShellScriptBuildPhase.java

            }
            s.addField("inputPaths", inputPathsArray);
    
            NSArray outputPathsArray = new NSArray(outputPaths.size());
            for (int i = 0; i < outputPaths.size(); i++) {
                outputPathsArray.setValue(i, new NSString(outputPaths.get(i)));
            }
            s.addField("outputPaths", outputPathsArray);
    
            NSString shellPathString;
            if (shellPath == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/legacy/StringWagon.java

            } else {
                throw new ResourceDoesNotExistException("No content provided for " + resource.getName());
            }
        }
    
        @Override
        public void fillOutputData(OutputData outputData) throws TransferFailedException {
            outputData.setOutputStream(new ByteArrayOutputStream());
        }
    
        @Override
        protected void openConnectionInternal() throws ConnectionException, AuthenticationException {}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/cpp_generator.cc

      return GenerateOneFile(cpp::RendererContext::kSource);
    }
    
    string CppGenerator::HeaderFileName() const {
      return io::JoinPath(path_config_.output_path, cpp_config_.unit + "_ops.h");
    }
    
    string CppGenerator::SourceFileName() const {
      return io::JoinPath(path_config_.output_path, cpp_config_.unit + "_ops.cc");
    }
    
    void CppGenerator::WriteHeaderFile() const {
      controller_.WriteFile(HeaderFileName(), HeaderFileContents());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/common/path_config.h

    #define TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_COMMON_PATH_CONFIG_H_
    
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    struct PathConfig {
      string output_path;
      std::vector<string> op_names;
      std::vector<string> api_dirs;
      string tf_prefix_dir;
      string tf_root_dir;
      string tf_output_dir;
    
      explicit PathConfig() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/MutationInfo.java

     */
    
    package org.gradle.execution.plan;
    
    import java.util.HashSet;
    import java.util.Set;
    
    class MutationInfo {
        private final Set<Node> nodesYetToConsumeOutput = new HashSet<>();
        final Set<String> outputPaths = new HashSet<>();
        final Set<String> destroyablePaths = new HashSet<>();
        boolean hasFileInputs;
        boolean hasOutputs;
        boolean hasLocalState;
        boolean hasValidationProblem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/common/path_config.cc

    namespace generator {
    
    PathConfig::PathConfig(const string& output_dir, const string& source_dir,
                           const string& api_dir_list,
                           const std::vector<string> op_names)
        : output_path(output_dir), op_names(op_names) {
      api_dirs = str_util::Split(api_dir_list, ",", str_util::SkipEmpty());
    
      // Decompose the directory components given the output/source directories.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/ResolveMutationsNode.java

            node.resolveMutations();
            mutations.hasValidationProblem = nodeValidator.hasValidationProblems(node);
            accessHierarchies.getOutputHierarchy().recordNodeAccessingLocations(node, mutations.outputPaths);
            accessHierarchies.getDestroyableHierarchy().recordNodeAccessingLocations(node, mutations.destroyablePaths);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  8. tensorflow/cc/client/client_session.h

      /// to feed them with. See `Input::Initializer` for details on what can be
      /// used as feed values.
      typedef std::unordered_map<Output, Input::Initializer, OutputHash> FeedType;
    
      /// Create a new session to evaluate the graph contained in `scope` by
      /// connecting to the TensorFlow runtime specified by `target`.
      ClientSession(const Scope& scope, const string& target);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
Back to top