Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for deflated (0.04 sec)

  1. android/guava-tests/test/com/google/common/collect/FauxveridesTest.java

        Set<MethodSignature> missing = ImmutableSortedSet.copyOf(difference(required, found));
        if (!missing.isEmpty()) {
          fail(
              rootLocaleFormat(
                  "%s should hide the public static methods declared in %s: %s",
                  descendant.getSimpleName(), ancestor.getSimpleName(), missing));
        }
      }
    
      private static Set<MethodSignature> getAllRequiredToFauxveride(Class<?> ancestor) {
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 9.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

       * #waitersField}.
       */
      private final @Nullable Waiter gasWaiters(Waiter update) {
        return ATOMIC_HELPER.gasWaiters(this, update);
      }
    
      /**
       * Marks the given node as 'deleted' (null waiter) and then scans the list to unlink all deleted
       * nodes. This is an O(n) operation in the common case (and O(n^2) in the worst), but we are saved
       * by two things.
       *
       * <ul>
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-04-14 15:16
    - 34.8K bytes
    - Viewed (0)
  3. cmd/storage-datatypes.go

    // The above means that any added/deleted fields are incompatible.
    //
    //msgp:tuple VolInfo
    type VolInfo struct {
    	// Name of the volume.
    	Name string
    
    	// Date and time when the volume was created.
    	Created time.Time
    
    	// total VolInfo counts
    	count int
    
    	// Date and time when the volume was deleted, if Deleted
    	Deleted time.Time
    }
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-25 05:41
    - 17.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

     * graph. The following test cases are left for the subclasses to handle:
     *
     * <ul>
     *   <li>Test cases related to whether the graph is directed, undirected, mutable, or immutable.
     *   <li>Test cases related to the specific implementation of the {@link Network} interface.
     * </ul>
     *
     * TODO(user): Make this class generic (using <N, E>) for all node and edge types.
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 18:46
    - 32.7K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/RelationshipTester.java

        T item = itemInfo.value;
        T related = relatedInfo.value;
        assertWithTemplate(
            "$ITEM must be $RELATIONSHIP to $OTHER",
            itemInfo,
            relatedInfo,
            equivalence.equivalent(item, related));
    
        int itemHash = equivalence.hash(item);
        int relatedHash = equivalence.hash(related);
        assertWithTemplate(
            "the $HASH ("
                + itemHash
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 6K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *   <li>If there is any non-private constructor or non-private static factory method declared by
       *       {@code cls}, all non-private instance methods will be checked too using the instance
       *       created by invoking the constructor or static factory method.
       *   <li>If there is any non-private constructor or non-private static factory method declared by
       *       {@code cls}:
       *       <ul>
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 32.7K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/RelationshipTester.java

        T item = itemInfo.value;
        T related = relatedInfo.value;
        assertWithTemplate(
            "$ITEM must be $RELATIONSHIP to $OTHER",
            itemInfo,
            relatedInfo,
            equivalence.equivalent(item, related));
    
        int itemHash = equivalence.hash(item);
        int relatedHash = equivalence.hash(related);
        assertWithTemplate(
            "the $HASH ("
                + itemHash
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 6K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       AbstractPackageSanityTests} doesn't know how to construct, the test will fail.
       *   <li>If there is no visible constructor or visible static factory method declared by {@code
       *       C}, {@code C} is skipped for serialization test, even if it implements {@link
       *       Serializable}.
       *   <li>Serialization test is not performed on method return values unless the method is a
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 17.8K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/bigger-applications.md

    It will include all the routes from that router as part of it.
    
    /// note | Technical Details
    
    It will actually internally create a *path operation* for each *path operation* that was declared in the `APIRouter`.
    
    So, behind the scenes, it will actually work as if everything was the same single app.
    
    ///
    
    /// check
    
    You don't have to worry about performance when including routers.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-11 13:37
    - 18.4K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

       *     CLEAN or REMOVE indicate that temporary files may need to be deleted.
       *
       *   o CLEAN lines track a cache entry that has been successfully published and may be read. A
       *     publish line is followed by the lengths of each of its values.
       *
       *   o READ lines track accesses for LRU.
       *
       *   o REMOVE lines track entries that have been deleted.
       *
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-28 23:28
    - 34.7K bytes
    - Viewed (0)
Back to top