Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 274 for volumes (0.03 sec)

  1. CHANGELOG/CHANGELOG-1.32.md

    - Fixed a race condition that could result in erroneous volume unmounts for flex volume plugins during kubelet restart. ([#127669](https://github.com/kubernetes/kubernetes/pull/127669), [@olyazavr](https://github.com/olyazavr))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.33.md

    - It introduces a new scope name `VolumeAttributesClass`. 
      
      It matches all PVC objects that have the volume attributes class mentioned. 
      
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

     - Kubelet flag `--keep-terminated-pod-volumes` was removed.  This flag was deprecated in 2017. ([#122082](https://github.com/kubernetes/kubernetes/pull/122082), [@carlory](https://github.com/carlory)) [SIG Apps, Node, Storage and Testing]
     
    ## Changes by Kind
    
    ### Deprecation
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.34.md

    - Enabled kube-apiserver support for `PodCertificateRequest` and `PodCertificate` projected volumes (behind the `PodCertificateRequest` feature gate). ([#128010](https://github.com/kubernetes/kubernetes/pull/128010), [@ahmedtd](https://github.com/ahmedtd)) [SIG API Machinery, Apps, Auth, Cloud Provider, Etcd, Node, Storage and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/StandardTable.java

          }
        }
    
        @Override
        Collection<V> createValues() {
          return new Values();
        }
    
        @WeakOuter
        private final class Values extends Maps.Values<R, V> {
          Values() {
            super(Column.this);
          }
    
          @Override
          public boolean remove(@Nullable Object obj) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ArrayTable.java

      /**
       * Returns an unmodifiable collection of all values, which may contain duplicates. Changes to the
       * table will update the returned collection.
       *
       * <p>The returned collection's iterator traverses the values of the first row key, the values of
       * the second row key, and so on.
       *
       * @return collection of values
       */
      @Override
      public Collection<@Nullable V> values() {
        return super.values();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/entity/RequestParameterTest.java

        }
    
        public void test_largeValueArray() {
            // Test with large array of values
            String name = "largeParam";
            String[] values = new String[1000];
            for (int i = 0; i < values.length; i++) {
                values[i] = "value" + i;
            }
            RequestParameter param = new RequestParameter(name, values);
    
            assertEquals(name, param.getName());
            assertNotNull(param.getValues());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ldap/LdapUser.java

        }
    
        private static String[] distinct(final String[] values) {
            if (values == null) {
                return StringUtil.EMPTY_STRINGS;
            }
            if (values.length < 2) {
                return values;
            }
            return Arrays.stream(values).distinct().toArray(n -> new String[n]);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

         * @return the file name portion of the path
         */
        private static String getName(final String objectName) {
            final String[] values = objectName.split("/");
            if (values.length == 0) {
                return StringUtil.EMPTY;
            }
            return values[values.length - 1];
        }
    
        /**
         * Decodes an encoded path ID back to the original path.
         *
         * @param id the encoded path ID
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

        private FessEnv.SimpleImpl fessEnv;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            fessEnv = new FessEnv.SimpleImpl();
        }
    
        // Test constant field values
        public void xtest_constantFields() {
            assertEquals("lasta_di.smart.deploy.mode", FessEnv.lasta_di_SMART_DEPLOY_MODE);
            assertEquals("development.here", FessEnv.DEVELOPMENT_HERE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.5K bytes
    - Viewed (0)
Back to top