Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for outputPath (0.22 sec)

  1. 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)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

         */
        public void setInputData ( Encodable inputData ) {
            this.inputData = inputData;
        }
    
    
        /**
         * @param outputData
         *            the outputData to set
         */
        public void setOutputData ( Encodable outputData ) {
            this.outputData = outputData;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#size()
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 07:13:17 UTC 2018
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

        }
    
    
        /**
         * @return the fileId
         */
        public byte[] getFileId () {
            return this.fileId;
        }
    
    
        /**
         * @return the outputData
         */
        public Decodable getOutputData () {
            return this.outputData;
        }
    
    
        /**
         * @return the outputLength
         */
        public int getOutputLength () {
            return this.outputLength;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tac.py

          Invalid model_path.
          Targets are not specified.
          Invalid output_path.
      """
      if not model_path:
        raise ValueError("Invalid model_path.")
    
      if not targets:
        raise ValueError("Targets are not specified.")
    
      if not output_path:
        raise ValueError("Invalid output_path.")
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top