Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for outputPath (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

            this.inputHierarchy = inputHierarchy;
        }
    
        public void detectMissingDependencies(LocalTaskNode node, TypeValidationContext validationContext) {
            for (String outputPath : node.getMutationInfo().outputPaths) {
                inputHierarchy.getNodesAccessing(outputPath).stream()
                    .filter(consumerNode -> hasNoSpecifiedOrder(node, consumerNode))
                    .filter(MissingTaskDependencyDetector::isEnabled)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    func podOutputPath(workDir string, cluster cluster.Cluster, pod corev1.Pod, dumpName string) string {
    	return outputPath(workDir, cluster, pod.Name, dumpName)
    }
    
    // outputPath gives a path in the form of workDir/cluster/<prefix>_<suffix>
    func outputPath(workDir string, cluster cluster.Cluster, prefix, suffix string) string {
    	dir := path.Join(workDir, cluster.StableName())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	for _, component := range constants.ControlPlaneComponents {
    		realPath := constants.GetStaticPodFilepath(component, dryRunManifestDir)
    		outputPath := constants.GetStaticPodFilepath(component, constants.GetStaticPodDirectory())
    		files = append(files, dryrunutil.NewFileToPrint(realPath, outputPath))
    	}
    
    	return dryrunutil.PrintDryRunFiles(files, os.Stdout)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. pkg/log/options_test.go

    			OutputPaths:         []string{defaultOutputPath},
    			ErrorOutputPaths:    []string{defaultErrorOutputPath},
    			defaultOutputLevels: "default:info,grpc:none",
    			stackTraceLevels:    levelToString[NoneLevel],
    			RotationMaxAge:      defaultRotationMaxAge,
    			RotationMaxSize:     defaultRotationMaxSize,
    			RotationMaxBackups:  defaultRotationMaxBackups,
    		}},
    
    		{"--log_stacktrace_level default:none", Options{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. pkg/log/options.go

    }
    
    // Options defines the set of options supported by Istio's component logging package.
    type Options struct {
    	// OutputPaths is a list of file system paths to write the log data to.
    	// The special values stdout and stderr can be used to output to the
    	// standard I/O streams. This defaults to stdout.
    	OutputPaths []string
    
    	// ErrorOutputPaths is a list of file system paths to write logger errors to.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. ci/official/utilities/extract_resultstore_links.py

          elem.tail = indent_str
    
    
    def create_xml_file(result_store_dict: ResultDictType,
                        output_path: str,
                        verbose: bool = False):
      """Creates a JUnit-based XML file, with each invocation as a testcase."""
      os.makedirs(os.path.dirname(output_path), exist_ok=True)
      failure_count = 0
      error_count = 0
    
      date_time = datetime.datetime
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/cc/framework/gradients.cc

    #include "tensorflow/core/graph/while_context.h"
    #include "tensorflow/core/lib/gtl/map_util.h"
    #include "tensorflow/core/platform/macros.h"
    
    namespace tensorflow {
    namespace {
    
    struct OutputHash {
      uint64 operator()(const Output& x) const { return x.hash(); }
    };
    
    struct OutputEq {
      bool operator()(const Output& x, const Output& y) const {
        return (x.node() == y.node()) && (x.index() == y.index());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top