Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for SetTime (0.14 sec)

  1. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	}
    
    	maxWaitTime := 1 * time.Second
    	etime, err := asw.SetDetachRequestTime(logger, generatedVolumeName, nodeName)
    	if err != nil {
    		t.Fatalf("SetDetachRequestTime failed. Expected: <no error> Actual: <%v>", err)
    	}
    	if etime >= maxWaitTime {
    		t.Logf("SetDetachRequestTim Expected: <elapsed time %v is smaller than maxWaitTime %v> Actual <elapsed time is larger than maxWaitTime>", etime, maxWaitTime)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  2. cmd/metacache-entries.go

    	}
    
    	// check both fileInfo's have same number of versions, if not skip
    	// the `other` entry.
    	if len(eVers.versions) != len(oVers.versions) {
    		eTime := eVers.latestModtime()
    		oTime := oVers.latestModtime()
    		if !eTime.Equal(oTime) {
    			if eTime.After(oTime) {
    				return e, false
    			}
    			return other, false
    		}
    		// Tiebreak on version count.
    		if len(eVers.versions) > len(oVers.versions) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	ESHUTDOWN       = syscall.Errno(0x6c)
    	ESOCKTNOSUPPORT = syscall.Errno(0x5e)
    	ESRMNT          = syscall.Errno(0x45)
    	ESTALE          = syscall.Errno(0x74)
    	ESTRPIPE        = syscall.Errno(0x56)
    	ETIME           = syscall.Errno(0x3e)
    	ETIMEDOUT       = syscall.Errno(0x6e)
    	ETOOMANYREFS    = syscall.Errno(0x6d)
    	EUCLEAN         = syscall.Errno(0x75)
    	EUNATCH         = syscall.Errno(0x31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	ESHUTDOWN       = syscall.Errno(0x6c)
    	ESOCKTNOSUPPORT = syscall.Errno(0x5e)
    	ESRMNT          = syscall.Errno(0x45)
    	ESTALE          = syscall.Errno(0x74)
    	ESTRPIPE        = syscall.Errno(0x56)
    	ETIME           = syscall.Errno(0x3e)
    	ETIMEDOUT       = syscall.Errno(0x6e)
    	ETOOMANYREFS    = syscall.Errno(0x6d)
    	EUCLEAN         = syscall.Errno(0x75)
    	EUNATCH         = syscall.Errno(0x31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	ESHUTDOWN       = syscall.Errno(0x6c)
    	ESOCKTNOSUPPORT = syscall.Errno(0x5e)
    	ESRMNT          = syscall.Errno(0x45)
    	ESTALE          = syscall.Errno(0x74)
    	ESTRPIPE        = syscall.Errno(0x56)
    	ETIME           = syscall.Errno(0x3e)
    	ETIMEDOUT       = syscall.Errno(0x6e)
    	ETOOMANYREFS    = syscall.Errno(0x6d)
    	EUCLEAN         = syscall.Errno(0x75)
    	EUNATCH         = syscall.Errno(0x31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                if (session.getProjectBuildingRequest().getBuildStartTime() != null) {
                    long buildStartTime =
                            session.getProjectBuildingRequest().getBuildStartTime().getTime();
                    if (artifactLastModified > buildStartTime) {
                        return true;
                    }
                }
    
                for (Path outputFile : (Iterable<Path>) outputFiles::iterator) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EPROCLIM           = Errno(1131)
    	EUSERS             = Errno(1132)
    	EDQUOT             = Errno(1133)
    	ESTALE             = Errno(1134)
    	EREMOTE            = Errno(1135)
    	ENOSTR             = Errno(1136)
    	ETIME              = Errno(1137)
    	ENOSR              = Errno(1138)
    	ENOMSG             = Errno(1139)
    	EBADMSG            = Errno(1140)
    	EIDRM              = Errno(1141)
    	ENONET             = Errno(1142)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. src/syscall/zerrors_solaris_amd64.go

    	ESOCKTNOSUPPORT = Errno(0x79)
    	ESPIPE          = Errno(0x1d)
    	ESRCH           = Errno(0x3)
    	ESRMNT          = Errno(0x45)
    	ESTALE          = Errno(0x97)
    	ESTRPIPE        = Errno(0x5c)
    	ETIME           = Errno(0x3e)
    	ETIMEDOUT       = Errno(0x91)
    	ETOOMANYREFS    = Errno(0x90)
    	ETXTBSY         = Errno(0x1a)
    	EUNATCH         = Errno(0x2a)
    	EUSERS          = Errno(0x5e)
    	EWOULDBLOCK     = Errno(0xb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top