Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for outputPath (0.16 sec)

  1. 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)
  2. src/main/java/jcifs/smb/SmbCopyUtil.java

                                    SrvCopyChunkCopyResponse outputData = response.getOutputData(SrvCopyChunkCopyResponse.class);
                                    maxChunks = outputData.getChunksWritten();
                                    maxChunkSize = outputData.getChunkBytesWritten();
                                    byteLimit = outputData.getTotalBytesWritten();
                                    continue;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

      def _create_and_save_vocab_table_lookup_model_tf1(
          self,
          output_path: str,
          tags: Collection[str],
          signature_def_key: str,
      ) -> Tuple[Mapping[str, core.Tensor], Mapping[str, core.Tensor]]:
        """Creates and saves a simple model that uses a vocab table.
    
        Args:
          output_path: Path to the directory to save the created model.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. 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)
  5. pkg/log/config_test.go

    	}
    
    	o = DefaultOptions()
    	o.logCallers = "foobar"
    	err = Configure(o)
    	if err != nil {
    		t.Error("Got success, expected failure")
    	}
    
    	o = DefaultOptions()
    	// using invalid filename
    	o.OutputPaths = []string{"//"}
    	err = Configure(o)
    	if err == nil {
    		t.Errorf("Got success, expecting error")
    	}
    
    	o = DefaultOptions()
    	o.ErrorOutputPaths = []string{"//"}
    	err = Configure(o)
    	if err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

                mutations.outputPaths.add(outputLocation.getAbsolutePath());
                mutations.hasOutputs = true;
            });
        }
    
        private void addLocalStateFilesToMutations(FileCollection localStateFiles) {
            final MutationInfo mutations = getMutationInfo();
            localStateFiles.forEach(file -> {
                mutations.outputPaths.add(file.getAbsolutePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    opt<std::string> input_model(llvm::cl::Positional,
                                 llvm::cl::desc("<input model path>"),
                                 llvm::cl::Required);
    
    // NOLINTNEXTLINE
    opt<std::string> output_path("o", llvm::cl::desc("<output path>"),
                                 llvm::cl::Required);
    
    // NOLINTNEXTLINE
    opt<std::string> export_type("export-type", llvm::cl::desc("<export type>"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/log/config.go

    	errSink, closeErrorSink, err := zap.Open(options.ErrorOutputPaths...)
    	if err != nil {
    		return nil, nil, nil, err
    	}
    
    	var outputSink zapcore.WriteSyncer
    	if len(options.OutputPaths) > 0 {
    		outputSink, _, err = zap.Open(options.OutputPaths...)
    		if err != nil {
    			closeErrorSink()
    			return nil, nil, nil, err
    		}
    	}
    
    	var sink zapcore.WriteSyncer
    	if rotaterSink != nil && outputSink != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top