Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 520 for modified (0.07 sec)

  1. scripts/deploy_docs_status.py

        header = "## πŸ“ Docs preview"
        message = header
        message += f"\n\nLast commit {settings.commit_sha} at: {deploy_url}"
    
        if links:
            message += "\n\n### Modified Pages\n\n"
            for link in links:
                message += f"* {link.preview_link}"
                message += f" - ([before]({link.previous_link}))"
                if link.en_link:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 05:56:53 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                    assertEquals(testByte, buffer[i], "Byte at position " + i + " was modified");
                }
    
                // Check bytes after encoded area
                for (int i = startIndex + expectedSize; i < buffer.length; i++) {
                    assertEquals(testByte, buffer[i], "Byte at position " + i + " was modified");
                }
            }
    
            @Test
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

     *
     * @author Dimitris Andreou
     */
    @Immutable
    abstract class AbstractCompositeHashFunction extends AbstractHashFunction {
    
      @SuppressWarnings("Immutable") // array not modified after creation
      final HashFunction[] functions;
    
      AbstractCompositeHashFunction(HashFunction... functions) {
        for (HashFunction function : functions) {
          checkNotNull(function);
        }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  4. docs/uk/docs/tutorial/response-status-code.md

    * **`300 - 399`** "ΠŸΠ΅Ρ€Π΅Π½Π°ΠΏΡ€Π°Π²Π»Π΅Π½Π½Ρ". Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Ρ– Π· Ρ†ΠΈΠΌΠΈ ΠΊΠΎΠ΄Π°ΠΌΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ ΠΌΠ°Ρ‚ΠΈ Π°Π±ΠΎ Π½Π΅ ΠΌΠ°Ρ‚ΠΈ Ρ‚Ρ–Π»Π°, Π·Π° винятком `304`, "Not Modified" (Π½Π΅ Π·ΠΌΡ–Π½Π΅Π½ΠΎ), яка Π½Π΅ ΠΏΠΎΠ²ΠΈΠ½Π½Π° ΠΌΠ°Ρ‚ΠΈ Ρ‚Ρ–Π»Π°.
    * **`400 - 499`** "Помилка ΠΊΠ»Ρ–Ρ”Π½Ρ‚Π°". Π¦Π΅ Π΄Ρ€ΡƒΠ³ΠΈΠΉ Ρ‚ΠΈΠΏ, який Π’ΠΈ, ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, Π±ΡƒΠ΄Π΅Ρ‚Π΅ використовувати Π½Π°ΠΉΡ‡Π°ΡΡ‚Ρ–ΡˆΠ΅.
        * ΠŸΡ€ΠΈΠΊΠ»Π°Π΄ `404`, "Not Found" (Π½Π΅ Π·Π½Π°ΠΉΠ΄Π΅Π½ΠΎ).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Mar 19 17:04:17 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  5. CREDITS

    steward.
    
    10.3. Modified Versions
    
    If you create software not governed by this License, and you want to
    create a new license for such software, you may create and use a
    modified version of this License if you rename the license and remove
    any references to the name of the license steward (except to note that
    such modified license differs from this License).
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Thu Mar 13 05:29:51 UTC 2025
    - 1.8M bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ObjectArrays.java

       *
       * <p>This method returns the elements in the order they are returned by the collection's
       * iterator.
       *
       * <p>TODO(kevinb): support concurrently modified collections?
       *
       * @param c the collection for which to return an array of elements
       * @param array the array in which to place the collection elements
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 09 15:48:28 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  7. internal/bpool/bpool.go

    func (bp *BytePoolCap) Put(b []byte) {
    	if bp == nil {
    		return
    	}
    
    	if cap(b) != bp.wcap {
    		// someone tried to put back buffer which is not part of this buffer pool
    		// we simply don't put this back into pool, a modified buffer provided
    		// by this package is no more usable, callers make sure to not modify
    		// the capacity of the buffer.
    		return
    	}
    
    	select {
    	case bp.c <- b[:bp.w]:
    		// buffer went back into pool
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 3K bytes
    - Viewed (0)
  8. architecture/standards/0009-use-american-english.md

    ### Migration and Enforcement
    
    * **New code**: All new contributions must use American English
    * **Existing code**: British English spellings in existing code should be updated opportunistically when those areas are modified, unless constrained by backward compatibility
    * **Documentation**: Documentation should be updated to use American English, prioritizing user-facing documentation
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Nov 25 07:01:54 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  9. internal/cachevalue/cache.go

    	// updateFn must return an updated value.
    	// If an error is returned the cached value is not set.
    	// Only one caller will call this function at any time, others will be blocking.
    	// The returned value can no longer be modified once returned.
    	// Should be set before calling Get().
    	updateFn func(ctx context.Context) (T, error)
    
    	// ttl for a cached value.
    	ttl time.Duration
    
    	opts Opts
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri May 24 12:50:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. internal/crypto/sse-c.go

    	if err != nil {
    		return key, err
    	}
    	return unsealObjectKey(clientKey[:], metadata, bucket, object)
    }
    
    // CreateMetadata encodes the sealed key into the metadata
    // and returns the modified metadata. It allocates a new
    // metadata map if metadata is nil.
    func (ssec) CreateMetadata(metadata map[string]string, sealedKey SealedKey) map[string]string {
    	if sealedKey.Algorithm != SealAlgorithm {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top