Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 269 for minified (0.04 seconds)

  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:
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Sep 30 05:56:53 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  2. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRuleTest.groovy

            incubatingInterface = instanceScopedPool.get(IncubatingInterface.name)
            stablePublicInterface = instanceScopedPool.get(StablePublicInterface.name)
    
            apiClass.changeStatus >> JApiChangeStatus.MODIFIED
            apiClass.oldClass >> Optional.of(oldBase)
            apiClass.newClass >> Optional.of(newBase)
    
            internalInterface.name = replaceAsInternal(internalInterface.name)
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 4K bytes
    - Click Count (0)
  3. 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
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Dec 09 15:48:28 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  4. 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
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Nov 25 07:01:54 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  5. 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
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 3K bytes
    - Click Count (0)
  6. 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);
        }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Feb 13 17:34:21 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  7. docs/uk/docs/tutorial/response-status-code.md

    * **`300 - 399`** "ΠŸΠ΅Ρ€Π΅Π½Π°ΠΏΡ€Π°Π²Π»Π΅Π½Π½Ρ". Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Ρ– Π· Ρ†ΠΈΠΌΠΈ ΠΊΠΎΠ΄Π°ΠΌΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ ΠΌΠ°Ρ‚ΠΈ Π°Π±ΠΎ Π½Π΅ ΠΌΠ°Ρ‚ΠΈ Ρ‚Ρ–Π»Π°, Π·Π° винятком `304`, "Not Modified" (Π½Π΅ Π·ΠΌΡ–Π½Π΅Π½ΠΎ), яка Π½Π΅ ΠΏΠΎΠ²ΠΈΠ½Π½Π° ΠΌΠ°Ρ‚ΠΈ Ρ‚Ρ–Π»Π°.
    * **`400 - 499`** "Помилка ΠΊΠ»Ρ–Ρ”Π½Ρ‚Π°". Π¦Π΅ Π΄Ρ€ΡƒΠ³ΠΈΠΉ Ρ‚ΠΈΠΏ, який Π’ΠΈ, ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, Π±ΡƒΠ΄Π΅Ρ‚Π΅ використовувати Π½Π°ΠΉΡ‡Π°ΡΡ‚Ρ–ΡˆΠ΅.
        * ΠŸΡ€ΠΈΠΊΠ»Π°Π΄ `404`, "Not Found" (Π½Π΅ Π·Π½Π°ΠΉΠ΄Π΅Π½ΠΎ).
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Mar 19 17:04:17 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  8. android/guava-tests/test/com/google/common/escape/EscapersTest.java

        assertWithMessage("null escaper should have no effect").that(escaper.escape(s)).isEqualTo(s);
      }
    
      public void testBuilderInitialStateNoReplacement() {
        // Unsafe characters aren't modified by default (unsafeReplacement == null).
        Escaper escaper = Escapers.builder().setSafeRange('a', 'z').build();
        assertThat(escaper.escape("The Quick Brown Fox")).isEqualTo("The Quick Brown Fox");
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  9. README.md

    The AGPLv3 provides no obligation by any party to support, maintain, or warranty the original or any modified work.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Dec 03 08:13:11 GMT 2025
    - 9K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/response-status-code.md

    * **`300 - 399`** son para "RedirecciΓ³n". Los responses con estos cΓ³digos de estado pueden o no tener un body, excepto `304`, "Not Modified", que no debe tener uno.
    * **`400 - 499`** son para responses de "Error del Cliente". Este es el segundo tipo que probablemente mΓ‘s usarΓ­as.
        * Un ejemplo es `404`, para un response "Not Found".
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 4.4K bytes
    - Click Count (0)
Back to Top