Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 345 for Reference (0.06 sec)

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

        assertThrows(NoSuchElementException.class, iter::next);
        assertThrows(NoSuchElementException.class, iter::peek);
      }
    
    
      @J2ktIncompatible // weak references, details of GC
      @GwtIncompatible // weak references
      @AndroidIncompatible // depends on details of GC
      public void testFreesNextReference() {
        Iterator<Object> itr =
            new AbstractIterator<Object>() {
              @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/ArrayIterator.java

     * @param <T> the type of array elements
     */
    public class ArrayIterator<T> implements Iterator<T> {
    
        /** The array of elements to iterate over */
        protected final T[] items;
    
        /** The index of the currently referenced element */
        protected int index = 0;
    
        /**
         * Returns an {@link Iterable} that wraps the array for use in a for-each statement.
         *
         * @param <T> the type of elements
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtStatus.java

        /** Logon failure: user not allowed to log on to this computer */
        int NT_STATUS_INVALID_WORKSTATION = 0xC0000070;
        /** The user's password has expired */
        int NT_STATUS_PASSWORD_EXPIRED = 0xC0000071;
        /** The referenced account is currently disabled */
        int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072;
        /** No mapping between account names and security IDs was done */
        int NT_STATUS_NONE_MAPPED = 0xC0000073;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

      in the time specified by `--legacy-service-account-token-clean-up-period` (defaulting
      to one year), **and are** referenced from the `.secrets` list of a ServiceAccount
      object, **and are not** referenced from pods. ([#115554](https://github.com/kubernetes/kubernetes/pull/115554), [@yt2985](https://github.com/yt2985))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 456.9K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/base/Platform.java

         * type.
         *
         * In practice, we are very unlikely to see `null`: The `WeakReference` to the enum constant
         * won't be cleared as long as the enum constant is referenced somewhere, and the enum constant
         * is referenced somewhere for as long as the enum class is loaded. *Maybe in theory* the enum
         * class could be unloaded after the above call to `getEnumConstants` but before we call
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  6. apache-maven/src/site/apt/index.apt.vm

    ~~ under the License.
    
     -----
     ${project.name}
     -----
     Hervé Boutemy
     -----
     2021-07-11
     -----
    
    ${project.name}
    
     ${project.description}
    
    * References
    
     * <<<mvn>>> invocation can be customized through pre-invocation script calls, that can be disabled by setting <<<MAVEN_SKIP_RC>>> environment variable:
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Aug 20 00:26:03 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/ResolverTypeTest.java

     */
    class ResolverTypeTest {
    
        /**
         * Tests that all expected enum constants exist.
         */
        @Test
        void testEnumConstants() {
            // Verify that each enum constant exists and can be referenced
            assertNotNull(ResolverType.RESOLVER_WINS, "RESOLVER_WINS should not be null.");
            assertNotNull(ResolverType.RESOLVER_BCAST, "RESOLVER_BCAST should not be null.");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Mojo.java

     * may still be evolving and could change in future versions.</li>
     * <li>{@link FunctionalInterface}: Denotes that this is a functional interface,
     * allowing implementations as lambda expressions or method references.</li>
     * <li>{@link Consumer}: Signifies that this type is intended to be implemented
     * or extended by Maven plugins or extensions and consumed by Maven itself.</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 08:21:00 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/JavaToolchain.java

     * Java-related toolchains that can be utilized during the build process
     * in Maven.</p>
     *
     * <p>Java toolchains are defined in the Maven toolchains.xml file and can
     * be referenced in the project's POM file. This enables developers to
     * specify the exact versions of Java tools they wish to use, ensuring
     * consistency across different build environments.</p>
     *
     * @since 4.0.0
     * @see Toolchain
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.7.md

        * Add `kubectl apply edit-last-applied` subcommand ([#42256](https://github.com/kubernetes/kubernetes/pull/42256), [@shiywang](https://github.com/shiywang))
    
      * Strategic Merge Patch
    
        * Reference docs now display the patch type and patch merge key used by `kubectl apply` to merge and identify unique elements in arrays.
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (1)
Back to top