Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for revisions (0.16 sec)

  1. LICENSE

          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
          form, that is based on (or derived from) the Work and for which the
          editorial revisions, annotations, elaborations, or other modifications
          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue May 08 21:35:34 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  2. LICENSE

          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
          form, that is based on (or derived from) the Work and for which the
          editorial revisions, annotations, elaborations, or other modifications
          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
    Plain Text
    - Registered: Thu May 09 15:34:10 GMT 2024
    - Last Modified: Thu Jun 14 07:45:22 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SID.java

                    }
    
                    return sid.revision == this.revision;
                }
            }
            return false;
        }
    
    
        /**
         * Return the numeric representation of this sid such as
         * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt>.
         */
        @Override
        public String toString () {
            String ret = "S-" + ( this.revision & 0xFF ) + "-";
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SID.java

                    }
    
                    return sid.revision == revision;
                }
            }
            return false;
        }
    
        /**
         * Return the numeric representation of this sid such as
         * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt>.
         */
        public String toString() {
            String ret = "S-" + (revision & 0xFF) + "-";
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
Back to top