Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,951 for removed (0.29 sec)

  1. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

            // only remove after setting to zero, to avoid concurrent updates
            map.remove(key, atomic);
            // succeed even if the remove fails, since the value was already adjusted
            return oldValue;
          }
        }
      }
    
      /**
       * If {@code (key, value)} is currently in the map, this method removes it and returns true;
       * otherwise, this method returns false.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  2. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchainManager#logger</exclude>
                  <!-- Remove plexus utils -->
                  <exclude>org.apache.maven.project.ProjectSorter#getDAG():METHOD_REMOVED</exclude>
                  <!-- classes moved to maven-compat -->
                  <exclude>org.apache.maven.plugin.PluginManager</exclude>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/AcceptedApiChangesJsonFileManagerTest.groovy

                            "changes": ["Method has been removed"],
                            "acceptation": "use ObjectFactory instead"
                        },
                        {
                            "type": "org.gradle.api.plugins.quality.CodeNarc",
                            "member": "Method org.gradle.api.plugins.quality.CodeNarc.getInstantiator()",
                            "changes": ["Method has been removed"],
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Aug 17 08:32:56 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ComputationException.java

     *
     * @author Bob Lee
     * @since 2.0
     * @deprecated This exception is no longer thrown by {@code com.google.common}. Previously, it was
     *     thrown by {@link MapMaker} computing maps. When support for computing maps was removed from
     *     {@code MapMaker}, it was added to {@code CacheBuilder}, which throws {@code
     *     ExecutionException}, {@code UncheckedExecutionException}, and {@code ExecutionError}. Any
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 04 13:28:27 GMT 2021
    - 1.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/ValueGraph.java

       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the graph after this method is called, the {@code Set}
       * {@code view} returned by this method will be invalidated, and will throw {@code
       * IllegalStateException} if it is accessed in any way, with the following exceptions:
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 15K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.21.md

    - The GA TokenRequest and TokenRequestProjection feature gates have been removed and are unconditionally enabled. Remove explicit use of those feature gates in CLI invocations. ([#97148](https://github.com/kubernetes/kubernetes/pull/97148),...
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Fri Oct 14 07:03:14 GMT 2022
    - 367.3K bytes
    - Viewed (4)
  7. guava-tests/test/com/google/common/graph/TestUtil.java

        assertThat(throwable).hasMessageThat().contains(ERROR_ELEMENT_REMOVED);
      }
    
      static void assertEdgeRemovedFromGraphErrorMessage(Throwable throwable) {
        assertThat(throwable).hasMessageThat().startsWith(EDGE_STRING);
        assertThat(throwable).hasMessageThat().contains(ERROR_ELEMENT_REMOVED);
      }
    
      static void assertStronglyEquivalent(Graph<?> graphA, Graph<?> graphB) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/graph/TestUtil.java

        assertThat(throwable).hasMessageThat().contains(ERROR_ELEMENT_REMOVED);
      }
    
      static void assertEdgeRemovedFromGraphErrorMessage(Throwable throwable) {
        assertThat(throwable).hasMessageThat().startsWith(EDGE_STRING);
        assertThat(throwable).hasMessageThat().contains(ERROR_ELEMENT_REMOVED);
      }
    
      static void assertStronglyEquivalent(Graph<?> graphA, Graph<?> graphB) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/PeekingIteratorTest.java

        assertEquals("B", peekingIterator.peek());
    
        /* Should complain on attempt to remove() after peek(). */
        try {
          peekingIterator.remove();
          fail("remove() should throw IllegalStateException after a peek()");
        } catch (IllegalStateException e) {
          /* expected */
        }
    
        assertEquals(
            "After remove() throws exception, peek should still be ok", "B", peekingIterator.peek());
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.22.md

     - The `CSIMigrationVSphereComplete` feature flag is removed. `InTreePluginvSphereUnregister` will be the way moving forward. ([#...
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Dec 13 12:43:45 GMT 2022
    - 454.1K bytes
    - Viewed (1)
Back to top