Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 588 for well (0.04 seconds)

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

        map = MutableClassToInstanceMap.create();
      }
    
      public void testConstraint() {
        /*
         * We'll give ourselves a pass on testing all the possible ways of breaking the constraint,
         * because we know that newClassMap() is implemented using ConstrainedMap which is itself
         * well-tested. A purist would object to this, but what can I say, we're dirty cheaters.
         */
        map.put(Integer.class, new Integer(5));
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 5K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java

              /*
               * And at least one of the classes inside TypeTokenTest ends up with a null value in
               * TypeMappingIntrospector.mappings. That happens only under older JDKs, too, so it may
               * well be a JDK bug.
               */
              || info.getName().contains("TypeTokenTest")
              /*
               * "IllegalAccess tried to access class
               * com.google.common.collect.testing.AbstractIteratorTester from class
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Jul 01 03:07:54 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

     * the methods of the delegate. For example, overriding {@link #getValue} alone <i>will not</i>
     * change the behavior of {@link #equals}, which can lead to unexpected behavior. In this case, you
     * should override {@code equals} as well, either providing your own implementation, or delegating
     * to the provided {@code standardEquals} method.
     *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Aug 06 17:32:30 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  4. docs/metrics/prometheus/alerts.md

    4. Wait for 5 mins (as alert is configured to be firing after 5 mins), and verify that you see an entry in webhook for the alert as well as in Prometheus console as shown below
    
    ```json
    {
      "receiver": "web\\.hook",
      "status": "firing",
      "alerts": [
        {
          "status": "firing",
          "labels": {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Apr 23 15:13:23 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/collect/ForwardingBlockingDeque.java

     * to the methods of the delegate. For example, overriding {@link #add} alone <b>will not</b> change
     * the behaviour of {@link #offer} which can lead to unexpected behaviour. In this case, you should
     * override {@code offer} as well, either providing your own implementation, or delegating to the
     * provided {@code standardOffer} method.
     *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 4.3K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java

              /*
               * And at least one of the classes inside TypeTokenTest ends up with a null value in
               * TypeMappingIntrospector.mappings. That happens only under older JDKs, too, so it may
               * well be a JDK bug.
               */
              || info.getName().contains("TypeTokenTest")
              /*
               * "IllegalAccess tried to access class
               * com.google.common.collect.testing.AbstractIteratorTester from class
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Jul 01 03:07:54 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

    ): Boolean =
        if (testCoverage.os == Os.MACOS && testCoverage.arch == Arch.AMD64) {
            subprojectName.contains("native") ||
                // Include precondition-tester here so we understand that tests do run on macOS intel as well
                subprojectName in listOf("file-watching", "snapshots", "workers", "logging", "precondition-tester")
        } else {
            true
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Apr 10 15:09:32 GMT 2025
    - 7.3K bytes
    - Click Count (0)
  8. src/test/java/jcifs/smb/compression/DefaultCompressionServiceTest.java

        private byte[] largeTestData;
    
        @BeforeEach
        public void setUp() {
            compressionService = new DefaultCompressionService();
    
            // Create test data with patterns that should compress well
            testData = generateTestData(1024);
            largeTestData = generateTestData(8192);
        }
    
        @Test
        @DisplayName("Test supported algorithms")
        public void testSupportedAlgorithms() {
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/ForwardingSortedMap.java

     * the methods of the delegate. For example, overriding {@link #put} alone <i>will not</i> change
     * the behavior of {@link #putAll}, which can lead to unexpected behavior. In this case, you should
     * override {@code putAll} as well, either providing your own implementation, or delegating to the
     * provided {@code standardPutAll} method.
     *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Feb 12 16:28:01 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/Interners.java

      /**
       * Returns a new thread-safe interner which retains a weak reference to each instance it has
       * interned, and so does not prevent these instances from being garbage-collected. This most
       * likely does not perform as well as {@link #newStrongInterner}, but is the best alternative when
       * the memory usage of that implementation is unacceptable.
       */
      @GwtIncompatible("java.lang.ref.WeakReference")
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 6K bytes
    - Click Count (0)
Back to Top