Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 67 for January (0.05 seconds)

  1. guava-testlib/src/com/google/common/collect/testing/google/TestStringListMultimapGenerator.java

        implements TestListMultimapGenerator<String, String> {
    
      @Override
      public SampleElements<Entry<String, String>> samples() {
        return new SampleElements<>(
            mapEntry("one", "January"),
            mapEntry("two", "February"),
            mapEntry("three", "March"),
            mapEntry("four", "April"),
            mapEntry("five", "May"));
      }
    
      @Override
      public SampleElements<String> sampleKeys() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 3K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/util/SMBUtil.java

         * @return the time value in milliseconds since January 1, 1970 UTC
         */
        public static long readUTime(final byte[] buffer, final int bufferIndex) {
            return (readInt4(buffer, bufferIndex) & 0xFFFFFFFFL) * 1000L;
        }
    
        /**
         * Writes a Java time value as a Unix time (32-bit seconds)
         * @param t the time value in milliseconds since January 1, 1970 UTC
         * @param dst the destination byte array
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 8K bytes
    - Click Count (0)
  3. .github/pull_request_template.md

    please ask on the developers list.
    
    To make clear that you license your contribution under
    the [Apache License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0)
    you have to acknowledge this by using the following check-box.
    
    - [ ] I hereby declare this contribution to be licenced under the [Apache License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0)
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:30:05 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/TestStringListMultimapGenerator.java

        implements TestListMultimapGenerator<String, String> {
    
      @Override
      public SampleElements<Entry<String, String>> samples() {
        return new SampleElements<>(
            mapEntry("one", "January"),
            mapEntry("two", "February"),
            mapEntry("three", "March"),
            mapEntry("four", "April"),
            mapEntry("five", "May"));
      }
    
      @Override
      public SampleElements<String> sampleKeys() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 3K bytes
    - Click Count (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/TestStringSetMultimapGenerator.java

        implements TestSetMultimapGenerator<String, String> {
    
      @Override
      public SampleElements<Entry<String, String>> samples() {
        return new SampleElements<>(
            mapEntry("one", "January"),
            mapEntry("two", "February"),
            mapEntry("three", "March"),
            mapEntry("four", "April"),
            mapEntry("five", "May"));
      }
    
      @Override
      public SampleElements<String> sampleKeys() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 3K bytes
    - Click Count (0)
  6. src/main/java/jcifs/SmbConstants.java

         */
        int TID_OFFSET = 24;
        /**
         * Length of SMB1 header in bytes.
         */
        int SMB1_HEADER_LENGTH = 32;
    
        /**
         * Milliseconds between January 1, 1970 and January 1, 1601.
         */
        long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L;
    
        /**
         * Default OEM encoding for non-Unicode strings.
         */
        String DEFAULT_OEM_ENCODING = "Cp850";
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 24 00:49:49 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/google/TestStringBiMapGenerator.java

    public abstract class TestStringBiMapGenerator implements TestBiMapGenerator<String, String> {
    
      @Override
      public SampleElements<Entry<String, String>> samples() {
        return new SampleElements<>(
            mapEntry("one", "January"),
            mapEntry("two", "February"),
            mapEntry("three", "March"),
            mapEntry("four", "April"),
            mapEntry("five", "May"));
      }
    
      @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 2.6K bytes
    - Click Count (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/TestStringMapGenerator.java

    @NullMarked
    public abstract class TestStringMapGenerator implements TestMapGenerator<String, String> {
    
      @Override
      public SampleElements<Entry<String, String>> samples() {
        return new SampleElements<>(
            mapEntry("one", "January"),
            mapEntry("two", "February"),
            mapEntry("three", "March"),
            mapEntry("four", "April"),
            mapEntry("five", "May"));
      }
    
      @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 2.5K bytes
    - Click Count (0)
  9. README.md

     See the License for the specific language governing permissions and
     limitations under the License.
    -->
    Apache Maven
    ============
    
    [![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/apache/maven.svg?label=License)][license]
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Nov 16 13:30:57 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  10. src/main/java/jcifs/smb1/util/Encdec.java

         */
        public Encdec() {
            // Default constructor
        }
    
        /**
         * Milliseconds between January 1, 1970 and January 1, 1601 (Windows epoch).
         */
        public static final long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L;
    
        /**
         * Seconds between January 1, 1904 and January 1, 1970 (Mac epoch).
         */
        public static final long SEC_BETWEEEN_1904_AND_1970 = 2082844800L;
    
        /**
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 18.5K bytes
    - Click Count (0)
Back to Top