Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for creation (0.72 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                final EntityCreator<T, SearchResponse, SearchHit> creator) {
            return search(index, condition, (searchRequestBuilder, execTime, searchResponse) -> {
                final List<T> list = new ArrayList<>();
                searchResponse.ifPresent(response -> response.getHits().forEach(hit -> {
                    list.add(creator.build(response, hit));
                }));
                return list;
            });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                    }
                }
                else {
                    if ( ctime != 0 || atime != 0 ) {
                        throw new SmbUnsupportedOperationException("Cannot set creation or access time without CAP_NT_SMBS");
                    }
                    th.send(
                        new SmbComSetInformation(th.getConfig(), getUncPath(), attrs, mtime - th.getServerTimeZoneOffset()),
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top