Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for trash (0.16 sec)

  1. cmd/metacache-manager.go

    			m.mu.Lock()
    			for k, v := range m.trash {
    				if time.Since(v.lastUpdate) > metacacheMaxRunningAge {
    					v.delete(context.Background())
    					delete(m.trash, k)
    				}
    			}
    			m.mu.Unlock()
    		}
    	}()
    }
    
    // updateCacheEntry will update non-transient state.
    func (m *metacacheManager) updateCacheEntry(update metacache) (metacache, error) {
    	m.mu.RLock()
    	if meta, ok := m.trash[update.id]; ok {
    		m.mu.RUnlock()
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Oct 25 00:44:15 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/suggest/admin_suggest.jsp

                                                                    value="<la:message key="labels.design_delete_button" />">
                                                                <em class="fa fa-trash">
                                                                <la:message key="labels.design_delete_button"/>
                                                            </button>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 18.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/role/admin_role_details.jsp

                                                value="<la:message key="labels.crud_button_delete" />">
                                            <em class="fa fa-trash">
                                            <la:message key="labels.crud_button_delete"/>
                                        </button>
                                        <div class="modal fade" id="confirmToDelete" tabindex="-1"
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 6.9K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                                        data-url="${f:h(doc.url_link)}">
                                                                    <em class="fa fa-trash">
                                                                    <la:message key="labels.search_list_button_delete"/>
                                                                </button>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Sep 24 13:09:22 GMT 2020
    - 20K bytes
    - Viewed (1)
  5. src/main/webapp/WEB-INF/view/common/admin/crud/buttons.jsp

    	</button>
    	<button type="button" class="btn btn-danger" name="delete"
    		data-toggle="modal" data-target="#confirmToDelete"
    		value="<la:message key="labels.crud_button_delete" />">
    		<em class="fa fa-trash">
    		<la:message key="labels.crud_button_delete" />
    	</button>
    	<div class="modal fade" id="confirmToDelete" tabindex="-1"
    		role="dialog">
    		<div class="modal-dialog">
    			<div class="modal-content bg-danger">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 10 12:37:20 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp

                                                    value="<la:message key="labels.crawling_info_button_delete" />">
                                                <em class="fa fa-trash">
                                                <la:message key="labels.crawling_info_button_delete"/>
                                            </button>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 10.1K bytes
    - Viewed (0)
  7. .gitignore

    # OSX leaves these everywhere on SMB shares
    ._*
    
    # OSX trash
    .DS_Store
    
    # Developers can store local stuff in dirs named __something
    __*
    
    # Eclipse files
    .classpath
    .project
    .settings/**
    
    # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
    .idea/
    *.iml
    
    # Vscode files
    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Feb 29 08:22:06 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo.jsp

                                                            data-toggle="modal" data-target="#confirmToDeleteAll">
                                                        <em class="fa fa-trash">
                                                        <la:message key="labels.crawling_info_delete_all_link"/>
                                                    </button>
                                                </div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 11.4K bytes
    - Viewed (0)
  9. src/archive/tar/reader_test.go

    		{data2[:1536] + trash[:1], 1, io.ErrUnexpectedEOF},
    		{data2[:1536] + trash[:511], 1, io.ErrUnexpectedEOF},
    		{data2[:1536] + trash, 1, ErrHeader},
    		{data2[:2048], 1, io.EOF}, // Exactly 1 empty block
    		{data2[:2048] + trash[:1], 1, io.ErrUnexpectedEOF},
    		{data2[:2048] + trash[:511], 1, io.ErrUnexpectedEOF},
    		{data2[:2048] + trash, 1, ErrHeader},
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog_details.jsp

                                                    value="<la:message key="labels.searchlog_configuration_button_delete" />">
                                                <em class="fa fa-trash">
                                                <la:message key="labels.searchlog_configuration_button_delete"/>
                                            </button>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 9.9K bytes
    - Viewed (0)
Back to top