Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for Accent (0.26 sec)

  1. src/main/webapp/css/admin/adminlte.min.css

    tem>.nav-link:not(.active):hover{color:#f8f9fa}.accent-light .page-item.active .page-link{background-color:#f8f9fa;border-color:#f8f9fa}.accent-light .page-item.disabled .page-link{background-color:#fff;border-color:#dee2e6}.accent-dark .btn-link,.accent-dark a:not(.dropdown-item){color:#343a40}.accent-dark .btn-link:hover,.accent-dark a:not(.dropdown-item):hover{color:#121416}.accent-dark .dropdown-item.active{background:#343a40;color:#fff}.accent-dark .custom-control-input:checked~.custom-cont...
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 641.1K bytes
    - Viewed (2)
  2. src/main/webapp/css/admin/adminlte.min.css.map

    #007bff;\n}\n\n.accent-primary .page-item.disabled .page-link {\n  background-color: #ffffff;\n  border-color: #dee2e6;\n}\n\n.accent-secondary .btn-link,\n.accent-secondary a:not(.dropdown-item) {\n  color: #6c757d;\n}\n\n.accent-secondary .btn-link:hover,\n.accent-secondary a:not(.dropdown-item):hover {\n  color: #494f54;\n}\n\n.accent-secondary .dropdown-item.active {\n  background: #6c757d;\n  color: #ffffff;\n}\n\n.accent-secondary .custom-control-input:checked ~ .custom-control-label::before...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 2M bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbEnumerationUtil.java

                @Override
                public boolean accept ( SmbResource parent, String name ) throws CIFSException {
                    if ( ! ( parent instanceof SmbFile ) ) {
                        return false;
                    }
                    return fnf.accept((SmbFile) parent, name);
                }
            }, ff == null ? null : new ResourceFilter() {
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jul 20 08:41:19 GMT 2019
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/DosFileFilter.java

     * as the specifed wildcard and attributes are passed to the server for
     * filtering there (although attributes are largely ignored by servers
     * they are filtered locally by the default accept method).
     */
        public DosFileFilter( String wildcard, int attributes ) {
            this.wildcard = wildcard;
            this.attributes = attributes;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java

            for (final Map.Entry<Thread, StackTraceElement[]> entry : Thread.getAllStackTraces().entrySet()) {
                writer.accept("Thread: " + entry.getKey());
                final StackTraceElement[] trace = entry.getValue();
                for (final StackTraceElement element : trace) {
                    writer.accept("\tat " + element);
                }
            }
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

            public void connect(Consumer<HttpURLConnection> actionListener, Consumer<Exception> exceptionListener) {
                try {
                    actionListener.accept(new MockHttpURLConnection(new URL(url)));
                } catch (MalformedURLException e) {
                    exceptionListener.accept(e);
                }
            }
        }
    
        class MockHttpURLConnection extends HttpURLConnection {
    
            MockHttpURLConnection(URL u) {
    Java
    - Registered: Thu Apr 25 15:34:08 GMT 2024
    - Last Modified: Mon Nov 14 21:05:19 GMT 2022
    - 3.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/spnego/NegTokenTarg.java

    
    @SuppressWarnings ( "javadoc" )
    public class NegTokenTarg extends SpnegoToken {
    
        public static final int UNSPECIFIED_RESULT = -1;
        public static final int ACCEPT_COMPLETED = 0;
        public static final int ACCEPT_INCOMPLETE = 1;
        public static final int REJECTED = 2;
        public static final int REQUEST_MIC = 3;
    
        private ASN1ObjectIdentifier mechanism;
    
        private int result = UNSPECIFIED_RESULT;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 5.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFileFilter.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    public interface SmbFileFilter {
        public boolean accept( SmbFile file ) throws SmbException;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 974 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

                    .stream(out -> {
                        try (final Writer writer = new BufferedWriter(new OutputStreamWriter(out.stream(), Constants.CHARSET_UTF_8))) {
                            writeCall.accept(writer);
                            writer.flush();
                        }
                    });
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/EnumTest.java

                    b.createNewFile();
                    c.createNewFile();
    
                    String[] names = f.list(new SmbFilenameFilter() {
    
                        @Override
                        public boolean accept ( SmbFile dir, String name ) throws SmbException {
                            return name.endsWith(".txt");
                        }
                    });
                    assertNotNull(names);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
Back to top