Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 875 for output_ (0.16 seconds)

  1. scripts/tests/test_translation_fixer/test_code_blocks/test_code_blocks_lines_number_mismatch.py

        )
        assert result.exit_code == 1, result.output
    
        fixed_content = (root_dir / "docs" / "lang" / "docs" / "doc.md").read_text("utf-8")
        expected_content = Path(f"{data_path}/translated_doc_lines_number_gt.md").read_text(
            "utf-8"
        )
    
        assert fixed_content == expected_content  # Translated doc remains unchanged
        assert "Error processing docs/lang/docs/doc.md" in result.output
        assert (
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  2. scripts/tests/test_translation_fixer/test_code_blocks/test_code_blocks_wrong_lang_code.py

        )
        assert result.exit_code == 1, result.output
    
        fixed_content = (root_dir / "docs" / "lang" / "docs" / "doc.md").read_text("utf-8")
        expected_content = Path(f"{data_path}/translated_doc_wrong_lang_code.md").read_text(
            "utf-8"
        )
    
        assert fixed_content == expected_content  # Translated doc remains unchanged
        assert "Error processing docs/lang/docs/doc.md" in result.output
        assert (
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  3. .github/workflows/release-branch-cherrypick.yml

            committer: TensorFlow Release Automation <******@****.***>
            token: ${{ secrets.JENKINS_TOKEN }}
            base: ${{ github.event.inputs.release_branch }}
            branch: ${{ github.event.inputs.release_branch }}-${{ steps.cherrypick.outputs.SHORTSHA }}
            reviewers: learning-to-play
            body: |
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Jan 01 08:09:03 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

            super(config);
            this.outputBuffer = null;
        }
    
        /**
         * Constructs an SMB2 IOCTL response with the given configuration and output buffer.
         *
         * @param config the configuration for this response
         * @param outputBuffer the buffer to receive output data
         */
        public Smb2IoctlResponse(final Configuration config, final byte[] outputBuffer) {
            super(config);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  5. docs/zh-hant/docs/how-to/separate-openapi-schemas.md

    ### 文件中的輸出模型 { #model-for-output-in-docs }
    
    你也可以在文件中檢視輸出模型,`name` 與 `description` 都以紅色星號標示為必填:
    
    <div class="screenshot">
    <img src="/img/tutorial/separate-openapi-schemas/image03.png">
    </div>
    
    ### 文件中的輸入與輸出模型 { #model-for-input-and-output-in-docs }
    
    如果你查看 OpenAPI 中所有可用的結構描述(JSON Schema),會看到有兩個:`Item-Input` 與 `Item-Output`。
    
    對於 `Item-Input`,`description` 不是必填,沒有紅色星號。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  6. docs/zh/docs/how-to/separate-openapi-schemas.md

    ### 文档中的输出模型 { #model-for-output-in-docs }
    
    你也可以在文档中查看输出模型,`name` 和 `description` **都**被**红色星号**标记为**必填**:
    
    <div class="screenshot">
    <img src="/img/tutorial/separate-openapi-schemas/image03.png">
    </div>
    
    ### 文档中的输入/输出模型 { #model-for-input-and-output-in-docs }
    
    如果你查看 OpenAPI 中可用的所有 Schema(JSON Schema),你会看到有两个,一个是 `Item-Input`,一个是 `Item-Output`。
    
    对于 `Item-Input`,`description` **不是必填**,没有红色星号。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:37:57 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/util/JobProcess.java

         * Uses the default buffer size and no output callback.
         *
         * @param process the system process to wrap
         */
        public JobProcess(final Process process) {
            this(process, InputStreamThread.MAX_BUFFER_SIZE, null);
        }
    
        /**
         * Constructs a new JobProcess with the specified process, buffer size, and output callback.
         *
         * @param process the system process to wrap
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractCatchingFuture.java

          Class<X> exceptionType,
          Function<? super X, ? extends V> fallback,
          Executor executor) {
        CatchingFuture<V, X> output = new CatchingFuture<>(input, exceptionType, fallback);
        input.addListener(output, rejectionPropagatingExecutor(executor, output));
        return output;
      }
    
      static <X extends Throwable, V extends @Nullable Object> ListenableFuture<V> createAsync(
          ListenableFuture<? extends V> input,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Sep 11 18:28:58 GMT 2025
    - 9K bytes
    - Click Count (0)
  9. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsWriter.java

     */
    @Deprecated(since = "4.0.0")
    public interface SettingsWriter {
    
        /**
         * Writes the supplied settings to the specified file. Any non-existing parent directories of the output file will
         * be created automatically.
         *
         * @param output The file to serialize the settings to, must not be {@code null}.
         * @param options The options to use for serialization, may be {@code null} to use the default values.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 3K bytes
    - Click Count (0)
  10. .github/workflows/contributor-pr.yml

          - uses: actions/upload-artifact@v7
            if: always()
            with:
              name: build-receipt.properties
              path: platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
        outputs:
          matrix: ${{ steps.setup-matrix.outputs.matrix }}
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 22:06:44 GMT 2026
    - 5K bytes
    - Click Count (0)
Back to Top