Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 356 for 13 (0.02 sec)

  1. cmd/erasure-encode_test.go

    	{dataBlocks: 2, onDisks: 4, offDisks: 0, blocksize: int64(oneMiByte / 2), data: oneMiByte, offset: oneMiByte/2 + 1, algorithm: DefaultBitrotAlgorithm, shouldFail: false, shouldFailQuorum: false}, // 13
    	{dataBlocks: 4, onDisks: 8, offDisks: 0, blocksize: int64(oneMiByte - 1), data: oneMiByte, offset: oneMiByte - 1, algorithm: BLAKE2b512, shouldFail: false, shouldFailQuorum: false},               // 14
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils_gen.go

    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *ReplicationState) Msgsize() (s int) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 03 06:45:06 UTC 2025
    - 59.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.17.md

      - [Changes by Kind](#changes-by-kind-13)
        - [Feature](#feature-3)
        - [Bug or Regression](#bug-or-regression-12)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-8)
    - [v1.17.4](#v1174)
      - [Downloads for v1.17.4](#downloads-for-v1174)
        - [Client Binaries](#client-binaries-13)
        - [Server Binaries](#server-binaries-13)
        - [Node Binaries](#node-binaries-13)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  4. docs/ko/docs/tutorial/query-params-str-validations.md

    ///
    
    `title`을 추가할 수 있습니다:
    
    {* ../../docs_src/query_params_str_validations/tutorial007.py hl[10] *}
    
    그리고 `description`도 추가할 수 있습니다:
    
    {* ../../docs_src/query_params_str_validations/tutorial008.py hl[13] *}
    
    ## 별칭 매개변수
    
    매개변수가 `item-query`이길 원한다고 가정해 봅시다.
    
    마치 다음과 같습니다:
    
    ```
    http://127.0.0.1:8000/items/?item-query=foobaritems
    ```
    
    그러나 `item-query`은 유효한 파이썬 변수 이름이 아닙니다.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. LICENSE

    to collect a royalty for further conveying from those to whom you convey
    the Program, the only way you could satisfy both those terms and this
    License would be to refrain entirely from conveying the Program.
    
      13. Remote Network Interaction; Use with the GNU General Public License.
    
      Notwithstanding any other provision of this License, if you modify the
    Program, your modified version must prominently offer all users
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java

                assertEquals(1, buffer[10]); // cipher count
                assertEquals(0, buffer[11]);
                assertEquals(1, buffer[12]); // cipher value
                assertEquals(0, buffer[13]);
                assertEquals((byte) 0xFF, buffer[9]); // Should not modify before offset
                assertEquals((byte) 0xFF, buffer[14]); // Should not modify after encoded data
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  7. docs/SMB3_IMPLEMENTATION_PLAN.md

    - [ ] Implement lease break notification handling
    - [ ] Modify SmbFile to support lease-based caching
    - [ ] Add lease upgrade/downgrade logic
    - [ ] Implement lease epoch tracking for v2 leases
    
    #### 1.3 Integration Points
    - Modify `Smb2CreateRequest` to include lease contexts
    - Update `SmbFile` caching logic to use leases
    - Add lease break handling in `SmbTransport`
    
    ---
    
    ### Phase 2: Persistent Handles
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s

    	VRANGEPD $13, Z21, Z12, K7, Z14                    // 62339d4f50f50d
    	VRANGEPD $13, Z9, Z12, K7, Z14                     // 62539d4f50f10d
    	VRANGEPD $13, Z21, Z13, K7, Z14                    // 6233954f50f50d
    	VRANGEPD $13, Z9, Z13, K7, Z14                     // 6253954f50f10d
    	VRANGEPD $13, Z21, Z12, K7, Z13                    // 62339d4f50ed0d
    	VRANGEPD $13, Z9, Z12, K7, Z13                     // 62539d4f50e90d
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 194.8K bytes
    - Viewed (0)
  9. src/archive/tar/strconv.go

    }
    
    // fitsInOctal reports whether the integer x fits in a field n-bytes long
    // using octal encoding with the appropriate NUL terminator.
    func fitsInOctal(n int, x int64) bool {
    	octBits := uint(n-1) * 3
    	return x >= 0 && (n >= 22 || x < 1<<octBits)
    }
    
    // parsePAXTime takes a string of the form %d.%d as described in the PAX
    // specification. Note that this implementation allows for negative timestamps,
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Sep 08 17:08:20 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java

            assertEquals(4, tokens.get(1).getStartOffset());
            assertEquals(7, tokens.get(1).getEndOffset());
            assertEquals(8, tokens.get(2).getStartOffset());
            assertEquals(13, tokens.get(2).getEndOffset());
        }
    
        @Test
        public void testMultipleAnalyzersIndependence() {
            // Test that multiple analyzer instances work independently
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 15.7K bytes
    - Viewed (0)
Back to top