Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1111 - 1120 of 1,169 for currently (0.07 sec)

  1. doc/godebug.md

    restores the installation and use of preinstalled `.a` files.
    
    There is no plan to remove any of these settings.
    
    ### Go 1.19
    
    Go 1.19 made it an error for path lookups to resolve to binaries in the current directory,
    controlled by the [`execerrdot` setting](/pkg/os/exec#hdr-Executables_in_the_current_directory).
    There is no plan to remove this setting.
    
    Go 1.19 started sending EDNS0 additional headers on DNS requests.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Oct 28 14:46:33 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

     *  Fix: Don't skip cache invalidation if the invalidating response has no body.
     *  Fix: Don't use a cryptographic random number generator for web sockets. Some Android devices
        implement `SecureRandom` incorrectly!
     *  Fix: Correctly canonicalize IPv6 addresses in `HttpUrl`. This prevented OkHttp from trusting
        HTTPS certificates issued to certain IPv6 addresses.
     *  Fix: Don't reuse connections after an unsuccessful `Expect: 100-continue`.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/ByteSource.java

          // Reading all the data as a byte array is more efficient than the default read()
          // implementation because:
          // 1. the string constructor can avoid an extra copy most of the time by correctly sizing the
          //    internal char array (hard to avoid using StringBuilder)
          // 2. we avoid extra copies into temporary buffers altogether
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    		serverPools[i] = poolAvailableSpace{
    			Index:      i,
    			Available:  available,
    			MaxUsedPct: maxUsedPct,
    		}
    	}
    	return serverPools
    }
    
    // PoolObjInfo represents the state of current object version per pool
    type PoolObjInfo struct {
    	Index   int
    	ObjInfo ObjectInfo
    	Err     error
    }
    
    type poolErrs struct {
    	Index int
    	Err   error
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 89.8K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/sql-databases.md

    ```
    
    /// tip
    
    ๐Ÿ— ๐Ÿ”ข ๐Ÿ‘ˆ ๐Ÿ•ด ๐Ÿ’ก ๐Ÿ”— โฎ๏ธ ๐Ÿ’ฝ (๐Ÿคš ๐Ÿ‘ฉโ€๐Ÿ’ป โš–๏ธ ๐Ÿฌ) ๐Ÿ”ฌ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ ๐Ÿ”ข*, ๐Ÿ‘† ๐Ÿ’ช ๐ŸŒ– ๐Ÿ’ช โ™ป ๐Ÿ‘ซ ๐Ÿ’— ๐Ÿ• &amp; ๐Ÿšฎ <abbr title="Automated tests, written in code, that check if another piece of code is working correctly.">โš’ ๐Ÿ’ฏ</abbr> ๐Ÿ‘ซ.
    
    ///
    
    ### โœ ๐Ÿ’ฝ
    
    ๐Ÿ”œ โœ ๐Ÿš™ ๐Ÿ”ข โœ ๐Ÿ’ฝ.
    
    ๐Ÿ”:
    
    * โœ ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿท *๐Ÿ‘* โฎ๏ธ ๐Ÿ‘† ๐Ÿ“Š.
    * `add` ๐Ÿ‘ˆ ๐Ÿ‘ ๐ŸŽš ๐Ÿ‘† ๐Ÿ’ฝ ๐ŸŽ‰.
    * `commit` ๐Ÿ”€ ๐Ÿ’ฝ (๐Ÿ‘ˆ ๐Ÿ‘ซ ๐Ÿ–Š).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          }
        }
      }
    
      /** A weakly referenced value that also has a reference to its containing entry. */
      interface WeakValueReference<K, V, E extends InternalEntry<K, V, E>> {
        /**
         * Returns the current value being referenced, or {@code null} if there is none (e.g. because
         * either it got collected, or {@link #clear} was called, or it wasn't set in the first place).
         */
        @CheckForNull
        V get();
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. CHANGELOG.md

    ```
    
    This is our first release that supports GraalVM. Our code on this platform is less mature than JVM
    and Android! Please report any issues you encounter: we'll fix them urgently.
    
     *  Fix: Attempt to read the response body even if the server canceled the request. This will cause
        some calls to return nice error codes like `HTTP/1.1 429 Too Many Requests` instead of transport
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. finisher_api.go

    // Delete deletes value matching given conditions. If value contains primary key it is included in the conditions. If
    // value includes a deleted_at field, then Delete performs a soft delete instead by setting deleted_at with the current
    // time if null.
    func (db *DB) Delete(value interface{}, conds ...interface{}) (tx *DB) {
    	tx = db.getInstance()
    	if len(conds) > 0 {
    		if exprs := tx.Statement.BuildCondition(conds[0], conds[1:]...); len(exprs) > 0 {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sat Sep 14 12:58:29 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableBiMap.java

          case 0:
            return of();
          case 1:
            Entry<K, V> entry = entryArray[0];
            return of(entry.getKey(), entry.getValue());
          default:
            /*
             * The current implementation will end up using entryArray directly, though it will write
             * over the (arbitrary, potentially mutable) Entry objects actually stored in entryArray.
             */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. docs/ja/docs/deployment/concepts.md

    /// tip
    
    ใ“ใ‚Œใ‚‰ใฎ**ใ‚ณใƒณใƒ†ใƒŠ**ใ‚„Dockerใใ—ใฆKubernetesใซ้–ขใ™ใ‚‹้ …็›ฎใŒใ€ใพใ ใ‚ใพใ‚Šๆ„ๅ‘ณใ‚’ใชใ—ใฆใ„ใชใใฆใ‚‚ๅฟƒ้…ใ—ใชใ„ใงใใ ใ•ใ„ใ€‚
    <!-- NOTE: the current version of docker.md is outdated compared to English one. -->
    
    ใ‚ณใƒณใƒ†ใƒŠใƒปใ‚คใƒกใƒผใ‚ธใ€Dockerใ€Kubernetesใชใฉใซใคใ„ใฆใฏใ€ๆฌกใฎ็ซ ใง่ฉณใ—ใ่ชฌๆ˜Žใ—ใพใ™: [ใ‚ณใƒณใƒ†ใƒŠๅ†…ใฎFastAPI - Docker](docker.md){.internal-link target=_blank}.
    
    ///
    
    ## ้–‹ๅง‹ๅ‰ใฎไบ‹ๅ‰ใฎใ‚นใƒ†ใƒƒใƒ—
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top