Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 611 - 620 of 920 for output_ (0.59 seconds)

  1. docs/uk/docs/advanced/generate-clients.md

    ```
    
    Це згенерує TypeScript SDK у `./src/client`.
    
    Ви можете дізнатися, як [встановити `@hey-api/openapi-ts`](https://heyapi.dev/openapi-ts/get-started), і почитати про [згенерований результат](https://heyapi.dev/openapi-ts/output) на їхньому сайті.
    
    ### Використання SDK { #using-the-sdk }
    
    Тепер ви можете імпортувати та використовувати клієнтський код. Це може виглядати так; зверніть увагу, що ви отримуєте «автодоповнення» для методів:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

            Exception exception = new Exception() {
                @Override
                public void printStackTrace(java.io.PrintWriter writer) {
                    // Simulate a normal stack trace output
                    writer.println("Special test exception");
                    writer.flush();
                }
            };
    
            monitorTarget.appendException(buf, exception);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb/compression/DefaultCompressionService.java

                throws CIFSException {
            byte[] decompressed = decompress(compressedData, offset, length, algorithm);
            if (outputBuffer.length - outputOffset < decompressed.length) {
                throw new CIFSException("Output buffer too small");
            }
            System.arraycopy(decompressed, 0, outputBuffer, outputOffset, decompressed.length);
            return decompressed.length;
        }
    
        @Override
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  4. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

         * <code>InputStream</code> associated with this Named Pipe
         * instance (unless of course it does not elicite a response or the pipe is write-only).
         * @return the output stream for writing to this pipe
         * @throws IOException if an I/O error occurs
         */
    
        public OutputStream getNamedPipeOutputStream() throws IOException {
            if (pipeOut == null) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 8.5K bytes
    - Click Count (0)
  5. src/test/java/jcifs/smb/SmbPipeHandleImplTest.java

            byte[] b = new byte[10];
            int n = spyTarget.recv(b, 2, 4);
            assertEquals(7, n);
            verify(in).readDirect(b, 2, 4);
        }
    
        @Test
        @DisplayName("send delegates to output.writeDirect with provided args")
        void testSendDelegation() throws Exception {
            SmbPipeHandleImpl spyTarget = spy(target);
            SmbPipeOutputStream out = mock(SmbPipeOutputStream.class);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.7K bytes
    - Click Count (0)
  6. docs/lambda/README.md

    The field of `getObjectContext` means the input and output details for connections to MinIO. It has the following fields:
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 7.7K bytes
    - Click Count (0)
  7. cmd/bucket-handlers.go

    			objectsToDelete[object] = index
    		}
    	}
    
    	toNames := func(input map[ObjectToDelete]int) (output []ObjectToDelete) {
    		output = make([]ObjectToDelete, len(input))
    		idx := 0
    		for obj := range input {
    			output[idx] = obj
    			idx++
    		}
    		return output
    	}
    
    	// Disable timeouts and cancellation
    	ctx = bgContext(ctx)
    
    	deleteList := toNames(objectsToDelete)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 63.9K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/groovy/elasticsearch.ide.gradle

      String checkstyleIdeConfig = "$rootDir/checkstyle_ide.xml"
    
      inputs.files(file(checkstyleConfig), file(checkstyleIdeFragment))
      outputs.files(file(checkstyleIdeConfig))
    
      doLast {
        // Create an IDE-specific checkstyle config by first copying the standard config
        Files.copy(
          Paths.get(file(checkstyleConfig).getPath()),
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 19:34:12 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  9. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                            logger.warn("  " + unsafePlugin.getId());
                        }
                        logger.warn("");
                        logger.warn("Enable verbose output (-X) to see precisely which goals are not marked as"
                                + " thread-safe.");
                    }
                    logger.warn(MultilineMessageHelper.separatorLine());
                }
            }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jan 10 08:42:00 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  10. scripts/translate.py

        for attempt_no in range(1, MAX_ATTEMPTS + 1):
            print(f"Running agent for {out_path} (attempt {attempt_no}/{MAX_ATTEMPTS})")
            result = agent.run_sync(prompt)
            out_content = f"{result.output.strip()}\n"
            try:
                check_translation(
                    doc_lines=out_content.splitlines(),
                    en_doc_lines=original_content.splitlines(),
                    lang_code=language,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
Back to Top