Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 260 for 18 (0.02 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - [v1.29.0-rc.0](#v1290-rc0)
      - [Downloads for v1.29.0-rc.0](#downloads-for-v1290-rc0)
        - [Source Code](#source-code-18)
        - [Client Binaries](#client-binaries-18)
        - [Server Binaries](#server-binaries-18)
        - [Node Binaries](#node-binaries-18)
        - [Container Images](#container-images-18)
      - [Changelog since v1.29.0-alpha.3](#changelog-since-v1290-alpha3)
      - [Changes by Kind](#changes-by-kind-17)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        // vary maximumSize wrt concurrencyLevel
    
        for (int maxSize = 1; maxSize < 100; maxSize++) {
          checkMaximumSize(1, 8, maxSize);
          checkMaximumSize(2, 8, maxSize);
          checkMaximumSize(4, 8, maxSize);
          checkMaximumSize(8, 8, maxSize);
        }
    
        checkMaximumSize(1, 8, Long.MAX_VALUE);
        checkMaximumSize(2, 8, Long.MAX_VALUE);
        checkMaximumSize(4, 8, Long.MAX_VALUE);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.9.md

    Some upgrade methods might upgrade etcd from 3.0 to 3.1 automatically when you upgrade from Kubernetes 1.8, unless you specify otherwise. Because [etcd does not support downgrading](https://coreos.com/etcd/docs/latest/upgrades/upgrade_3_1.html), you'll need to either remain on etcd 3.1 or restore from a backup if you want to downgrade back to Kubernetes 1.8.
    
    ## Introduction to 1.9.0
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.21.md

    - [v1.21.0-alpha.3](#v1210-alpha3)
      - [Downloads for v1.21.0-alpha.3](#downloads-for-v1210-alpha3)
        - [Source Code](#source-code-18)
        - [Client binaries](#client-binaries-18)
        - [Server binaries](#server-binaries-18)
        - [Node binaries](#node-binaries-18)
      - [Changelog since v1.21.0-alpha.2](#changelog-since-v1210-alpha2)
      - [Urgent Upgrade Notes](#urgent-upgrade-notes-4)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool-rebalance_gen.go

    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z rebalanceInfo) Msgsize() (s int) {
    	s = 1 + 8 + msgp.TimeSize + 7 + msgp.TimeSize + 7 + msgp.Uint8Size
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *rebalanceMeta) DecodeMsg(dc *msgp.Reader) (err error) {
    	var field []byte
    	_ = field
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.24.md

        - [Source Code](#source-code-18)
        - [Client Binaries](#client-binaries-18)
        - [Server Binaries](#server-binaries-18)
        - [Node Binaries](#node-binaries-18)
        - [Container Images](#container-images-18)
      - [Changelog since v1.24.0-rc.0](#changelog-since-v1240-rc0)
      - [Dependencies](#dependencies-18)
        - [Added](#added-18)
        - [Changed](#changed-18)
        - [Removed](#removed-18)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.19.md

      - [Dependencies](#dependencies-18)
        - [Added](#added-18)
        - [Changed](#changed-18)
        - [Removed](#removed-18)
    - [v1.19.0-rc.3](#v1190-rc3)
      - [Downloads for v1.19.0-rc.3](#downloads-for-v1190-rc3)
        - [Source Code](#source-code-18)
        - [Client binaries](#client-binaries-18)
        - [Server binaries](#server-binaries-18)
        - [Node binaries](#node-binaries-18)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  8. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const AF_ISO ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_LAT = 14
    pkg syscall (netbsd-arm64-cgo), const AF_LAT ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_LINK = 18
    pkg syscall (netbsd-arm64-cgo), const AF_LINK ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_LOCAL = 1
    pkg syscall (netbsd-arm64-cgo), const AF_LOCAL ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_MAX = 35
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

      public void testBuildKeepingLast_collisions() {
        Map<ClassWithTerribleHashCode, Integer> expected = new LinkedHashMap<>();
        Builder<ClassWithTerribleHashCode, Integer> builder = new Builder<>();
        int size = 18;
        for (int i = 0; i < size; i++) {
          ClassWithTerribleHashCode key = new ClassWithTerribleHashCode(i);
          builder.put(key, i);
          builder.put(key, -i);
          expected.put(key, -i);
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  10. src/archive/tar/common.go

    //
    //	var compactFile = "abcdefgh"
    //
    // And the sparse map has the following entries:
    //
    //	var spd sparseDatas = []sparseEntry{
    //		{Offset: 2,  Length: 5},  // Data fragment for 2..6
    //		{Offset: 18, Length: 3},  // Data fragment for 18..20
    //	}
    //	var sph sparseHoles = []sparseEntry{
    //		{Offset: 0,  Length: 2},  // Hole fragment for 0..1
    //		{Offset: 7,  Length: 11}, // Hole fragment for 7..17
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Sep 13 21:03:27 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top