Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for UnixMicro (0.07 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    	if t == nil && u == nil {
    		return true
    	}
    	if t != nil && u != nil {
    		return t.Time.Equal(u.Time)
    	}
    	return false
    }
    
    // UnixMicro returns the local time corresponding to the given Unix time
    // by wrapping time.Unix.
    func UnixMicro(sec int64, nsec int64) MicroTime {
    	return MicroTime{time.Unix(sec, nsec)}
    }
    
    // UnmarshalJSON implements the json.Unmarshaller interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top