Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for readCount (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializer.java

                int size = readCount();
                String[] array = new String[size];
                for (int i = 0; i < size; i++) {
                    array[i] = readNullableString();
                }
                return array;
            }
    
            private List<String> readStringList() throws IOException {
                int size = readCount();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/HashBiMap.java

      @J2ktIncompatible
      private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
        stream.defaultReadObject();
        int size = Serialization.readCount(stream);
        init(16); // resist hostile attempts to allocate gratuitous heap
        Serialization.populateMap(this, stream, size);
      }
    
      @GwtIncompatible // Not needed in emulated source
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/HashBiMap.java

      @J2ktIncompatible
      private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
        stream.defaultReadObject();
        int size = Serialization.readCount(stream);
        init(16); // resist hostile attempts to allocate gratuitous heap
        Serialization.populateMap(this, stream, size);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  4. pkg/controller/daemon/update_test.go

    	clearExpectations(t, manager, ds, podControl)
    
    	readyCount := 0
    	expectedReadyCount := 5 - maxUnavailable
    	for _, obj := range podControl.podStore.List() {
    		pod := obj.(*v1.Pod)
    		n, condition := podutil.GetPodCondition(&pod.Status, v1.PodReady)
    		if n != -1 && condition.Status == v1.ConditionTrue {
    			readyCount++
    		}
    	}
    
    	if readyCount != expectedReadyCount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top