Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for LastAccessTime (0.32 sec)

  1. pkg/kubelet/util/manager/watch_based_manager.go

    	waitGroup sync.WaitGroup
    
    	// lock is to ensure the access and modify of lastAccessTime, stopped, and immutable are thread safety,
    	// and protecting from closing stopCh multiple times.
    	lock           sync.Mutex
    	lastAccessTime time.Time
    	stopped        bool
    	immutable      bool
    	stopCh         chan struct{}
    }
    
    func (i *objectCacheItem) stop() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    }
    
    func copyFindData(dst *Win32finddata, src *win32finddata1) {
    	dst.FileAttributes = src.FileAttributes
    	dst.CreationTime = src.CreationTime
    	dst.LastAccessTime = src.LastAccessTime
    	dst.LastWriteTime = src.LastWriteTime
    	dst.FileSizeHigh = src.FileSizeHigh
    	dst.FileSizeLow = src.FileSizeLow
    	dst.Reserved0 = src.Reserved0
    	dst.Reserved1 = src.Reserved1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp

                                                        key="labels.failure_url_last_access_time"/></th>
                                                <td>${f:h(lastAccessTime)}<la:hidden
                                                        property="lastAccessTime"/></td>
                                            </tr>
                                            </tbody>
                                        </table>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.8K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenJarCreator.groovy

            }
        }
    
        private static ZipEntry normalizedZipEntry(String name) {
            new ZipEntry(name).tap {
                creationTime = FileTime.fromMillis(0)
                lastAccessTime = FileTime.fromMillis(0)
                lastModifiedTime = FileTime.fromMillis(0)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 05 09:51:22 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/syscall_windows.go

    }
    
    type SecurityAttributes struct {
    	Length             uint16
    	SecurityDescriptor uintptr
    	InheritHandle      bool
    }
    
    type FILE_BASIC_INFO struct {
    	CreationTime   int64
    	LastAccessTime int64
    	LastWriteTime  int64
    	ChangedTime    int64
    	FileAttributes uint32
    
    	// Pad out to 8-byte alignment.
    	//
    	// Without this padding, TestChmod fails due to an argument validation error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFailureUrlCB.java

                doColumn("errorLog");
            }
    
            public void columnErrorName() {
                doColumn("errorName");
            }
    
            public void columnLastAccessTime() {
                doColumn("lastAccessTime");
            }
    
            public void columnThreadName() {
                doColumn("threadName");
            }
    
            public void columnUrl() {
                doColumn("url");
            }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    }
    
    func copyFindData(dst *Win32finddata, src *win32finddata1) {
    	dst.FileAttributes = src.FileAttributes
    	dst.CreationTime = src.CreationTime
    	dst.LastAccessTime = src.LastAccessTime
    	dst.LastWriteTime = src.LastWriteTime
    	dst.FileSizeHigh = src.FileSizeHigh
    	dst.FileSizeLow = src.FileSizeLow
    	dst.Reserved0 = src.Reserved0
    	dst.Reserved1 = src.Reserved1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp

                                                            <td><fmt:formatDate
                                                                    value="${fe:date(data.lastAccessTime)}"
                                                                    pattern="yyyy-MM-dd'T'HH:mm:ss"/></td>
                                                        </tr>
                                                    </c:forEach>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java

                result.setErrorLog(DfTypeUtil.toString(source.get("errorLog")));
                result.setErrorName(DfTypeUtil.toString(source.get("errorName")));
                result.setLastAccessTime(DfTypeUtil.toLong(source.get("lastAccessTime")));
                result.setThreadName(DfTypeUtil.toString(source.get("threadName")));
                result.setUrl(DfTypeUtil.toString(source.get("url")));
                return updateEntity(source, result);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_de.properties

    labels.fileName=Dateiname
    labels.handlerName=Handlername
    labels.handlerParameter=Parameter
    labels.handlerScript=Skripte
    labels.popularWord=Beliebte Wörter
    labels.ignoreFailureType=Ignorierte Fehlertypen
    labels.lastAccessTime=Letzter Zugriff
    labels.notificationTo=Benachrichtigung an
    labels.num=Anzahl
    labels.pn=Seitenzahl
    labels.protocolScheme=Schema
    labels.purgeByBots=Bereinige Aufrufe von Bots
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
Back to top