Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 767 for contained (0.26 sec)

  1. src/main/java/org/codelibs/core/lang/StringUtil.java

        }
    
        /**
         * Returns true if the string contains the specified character.
         *
         * @param str
         *            the string to check
         * @param ch
         *            the character to find
         * @return true if the character is contained in the string, false otherwise
         */
        public static boolean contains(final String str, final char ch) {
            if (isEmpty(str)) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

        while (removeFrom.hasNext()) {
          if (!elementsToRetain.contains(removeFrom.next())) {
            removeFrom.remove();
            result = true;
          }
        }
        return result;
      }
    
      /**
       * Determines whether two iterators contain equal elements in the same order. More specifically,
       * this method returns {@code true} if {@code iterator1} and {@code iterator2} contain the same
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashMap.java

                  size, Spliterator.DISTINCT | Spliterator.ORDERED, MapEntry::new);
        }
    
        @Override
        public boolean contains(@Nullable Object o) {
          Map<K, V> delegate = delegateOrNull();
          if (delegate != null) {
            return delegate.entrySet().contains(o);
          } else if (o instanceof Entry) {
            Entry<?, ?> entry = (Entry<?, ?>) o;
            int index = indexOf(entry.getKey());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  4. gradle/wrapper/gradle-wrapper.jar

    notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation,...
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 44.4K bytes
    - Viewed (1)
  5. CHANGELOG/CHANGELOG-1.33.md

    - github.com/containerd/containerd/api: [v1.7.19 → v1.8.0](https://github.com/containerd/containerd/compare/api/v1.7.19...api/v1.8.0)
    - github.com/containerd/errdefs: [v0.1.0 → v1.0.0](https://github.com/containerd/errdefs/compare/v0.1.0...v1.0.0)
    - github.com/containerd/ttrpc: [v1.2.5 → v1.2.6](https://github.com/containerd/ttrpc/compare/v1.2.5...v1.2.6)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - Fixed a bug where the device resources allocated to an init container, with `containerRestartPolicy` of `Always`, were erroneously reused by a regular container. ([#120461](https://github.com/kubernetes/kubernetes/pull/120461), [@gjkim42](https://github.com/gjkim42))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.32.md

    - github.com/containerd/containerd/api: [v1.7.19](https://github.com/containerd/containerd/tree/api/v1.7.19)
    - github.com/containerd/errdefs: [v0.1.0](https://github.com/containerd/errdefs/tree/v0.1.0)
    - github.com/containerd/log: [v0.1.0](https://github.com/containerd/log/tree/v0.1.0)
    - github.com/containerd/typeurl/v2: [v2.2.0](https://github.com/containerd/typeurl/tree/v2.2.0)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactHashMap.java

        @Override
        public Iterator<Entry<K, V>> iterator() {
          return entrySetIterator();
        }
    
        @Override
        public boolean contains(@Nullable Object o) {
          Map<K, V> delegate = delegateOrNull();
          if (delegate != null) {
            return delegate.entrySet().contains(o);
          } else if (o instanceof Entry) {
            Entry<?, ?> entry = (Entry<?, ?>) o;
            int index = indexOf(entry.getKey());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 35.7K bytes
    - Viewed (0)
  9. .github/workflows/containers.yml

        steps:
          - name: Checkout
            uses: actions/checkout@v5
    
          - name: Configure JDK
            uses: actions/setup-java@v5
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v4
    
          - name: Run Container Tests
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 872 bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

            return 0L;
        }
    
        /**
         * List the contents of this SMB resource. The list returned by this
         * method will be;
         *
         * <ul>
         * <li> files and directories contained within this resource if the
         * resource is a normal disk file directory,
         * <li> all available NetBIOS workgroups or domains if this resource is
         * the top level URL <code>smb1://</code>,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top