Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for renameTo (0.04 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

            return SmbEnumerationUtil.doEnum(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, filter);
        }
    
        @Override
        public void renameTo(final SmbResource d) throws SmbException {
            renameTo(d, false);
        }
    
        @Override
        public void renameTo(final SmbResource d, final boolean replace) throws SmbException {
            if (!(d instanceof final SmbFile dest)) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
    
            if (LogStream.level >= 3) {
                log.println("renameTo: " + unc + " -> " + dest.unc);
            }
    
            attrExpiration = sizeExpiration = 0;
            dest.attrExpiration = 0;
    
            /*
             * Rename Request / Response
             */
    
            send(new SmbComRename(unc, dest.unc), blank_resp());
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

      * You do not need to adjust this flag on Kubelet:  there was no authorization for the Kubelet APIs in 1.4.
    * batch/v2alpha1.ScheduledJob has been renamed, use batch/v2alpha1.CronJob instead ([#36021](https://github.com/kubernetes/kubernetes/pull/36021), [@soltysh](https://github.com/soltysh))
    * PetSet has been renamed to StatefulSet.
      If you have existing PetSets, **you must perform extra migration steps** both
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.4.md

    worry, the operation succeeded except for the part where the new replication controller is renamed back to the old name. You can just do another rolling update using kubectl 1.4 or higher to change the name back: look for a replication controller that has the original name plus a random suffix.
    
    Unfortunately, there is a much rarer second possible failure mode: the replication controller gets renamed to the old name, but there is a duplicated set of pods in the cluster. kubectl will not report...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top