Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for spacing (0.17 sec)

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

    
        @Override
        public SmbFileInputStream openInputStream ( int sharing ) throws SmbException {
            return openInputStream(0, O_RDONLY, sharing);
        }
    
    
        @Override
        public SmbFileInputStream openInputStream ( int flags, int access, int sharing ) throws SmbException {
            return new SmbFileInputStream(this, flags, access, sharing, false);
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

      /** Returns an instance of type token that wraps {@code type}. */
      public static TypeToken<?> of(Type type) {
        return new SimpleTypeToken<>(type);
      }
    
      /**
       * Returns the raw type of {@code T}. Formally speaking, if {@code T} is returned by {@link
       * java.lang.reflect.Method#getGenericReturnType}, the raw type is what's returned by {@link
       * java.lang.reflect.Method#getReturnType} of the same method object. Specifically:
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
Back to top