Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 68 for Shanks (0.03 seconds)

  1. SECURITY.md

    It's better to discuss privately and try to find a solution first, to limit the potential impact as much as possible.
    
    ---
    
    Thanks for your help!
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Aug 31 10:49:48 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  2. docs/en/docs/management-tasks.md

    Try to find the good side. In general, if people are not being unfriendly, try to thank their effort and interest, even if you disagree with the main subject (discussion, PR), just thank them for being interested in the project, or for having dedicated some time to try to do something.
    
    It's difficult to convey emotion in text, use emojis to help. 😅
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopy.java

        private final SrvCopychunk[] chunks;
    
        /**
         * Constructs a server copy chunk operation request
         * @param sourceKey the resume key identifying the source file
         * @param chunks the array of copy chunk descriptors
         */
        public SrvCopychunkCopy(final byte[] sourceKey, final SrvCopychunk... chunks) {
            this.sourceKey = sourceKey;
            this.chunks = chunks;
        }
    
        /**
         * {@inheritDoc}
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  4. src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java

            void testDecodeVariousChunksWritten(int chunks) throws SMBProtocolDecodingException {
                byte[] buffer = createValidCopyChunkResponse(chunks, 0, 0);
    
                int bytesDecoded = response.decode(buffer, 0, buffer.length);
    
                assertEquals(12, bytesDecoded);
                assertEquals(chunks, response.getChunksWritten());
            }
    
            @ParameterizedTest
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 19.8K bytes
    - Click Count (0)
  5. .github/ISSUE_TEMPLATE/FEATURE.yml

    name: Feature request
    description: File a proposal for new feature, improvement
    labels: ["enhancement"]
    
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for taking the time to fill out this new feature, improvement proposal.
    
      - type: textarea
        id: message
        attributes:
          label: New feature, improvement proposal
        validations:
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:30:05 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  6. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

            @DisplayName("Should return correct size with multiple chunks")
            @ValueSource(ints = { 1, 2, 3, 5, 10, 100 })
            void testSizeWithMultipleChunks(int chunkCount) {
                // Given
                byte[] sourceKey = new byte[SOURCE_KEY_SIZE];
                SrvCopychunk[] chunks = new SrvCopychunk[chunkCount];
                for (int i = 0; i < chunkCount; i++) {
                    chunks[i] = new SrvCopychunk(i * 100, i * 200, i * 300);
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 23.1K bytes
    - Click Count (0)
  7. .github/DISCUSSION_TEMPLATE/translations.yml

    labels: [lang-all]
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for your interest in helping translate the FastAPI docs! 🌍
    
            Please follow these instructions carefully to propose a new language translation. 🙏
    
            This structured process helps ensure translations can be properly maintained long-term.
      - type: checkboxes
        id: checks
        attributes:
          label: Initial Checks
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Jul 26 11:35:42 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  8. .github/ISSUE_TEMPLATE/BUG.yml

    name: Bug Report
    description: File a bug report
    labels: ["bug"]
    
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for taking the time to fill out this bug report.     
    
            Simple fixes in single PRs do not require issues. 
      
            **Do you use the latest project version?**
    
      - type: input
        id: version
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:30:05 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  9. src/main/java/jcifs/smb/SmbCopyUtil.java

                                wsize = byteLimit;
                            }
    
                            int chunks = (int) (wsize / maxChunkSize);
                            int lastChunkSize;
                            if (chunks + 1 > maxChunks) {
                                chunks = maxChunks;
                                lastChunkSize = maxChunkSize;
                            } else {
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 16.6K bytes
    - Click Count (0)
  10. docs/en/docs/deployment/versions.md

    ///
    
    ## Upgrading the FastAPI versions { #upgrading-the-fastapi-versions }
    
    You should add tests for your app.
    
    With **FastAPI** it's very easy (thanks to Starlette), check the docs: [Testing](../tutorial/testing.md){.internal-link target=_blank}
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Aug 31 09:15:41 GMT 2025
    - 3.5K bytes
    - Click Count (0)
Back to Top