Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Epoch (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	scopedType := declType.MaybeAssignTypeName(generateUniqueSelfTypeName())
    
    	oldSelfEnvSet, err = baseEnvSet.Extend(
    		environment.VersionedOptions{
    			// Feature epoch was actually 1.23, but we artificially set it to 1.0 because these
    			// options should always be present.
    			IntroducedVersion: version.MajorMinor(1, 0),
    			EnvOptions: []cel.EnvOption{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/crypto/tls/ticket.go

    	// TLS 1.0–1.2 might be earlier than the current session) and the time at
    	// which the ticket was received on the client.
    	createdAt         uint64 // seconds since UNIX epoch
    	secret            []byte // master secret for TLS 1.2, or the PSK for TLS 1.3
    	extMasterSecret   bool
    	peerCertificates  []*x509.Certificate
    	activeCertHandles []*activeCert
    	ocspResponse      []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/utils.go

    	a := make(labels.Set)
    	for k, v := range template.Annotations {
    		a[k] = v
    	}
    	return a
    }
    
    // getJobFromTemplate2 makes a Job from a CronJob. It converts the unix time into minutes from
    // epoch time and concatenates that to the job name, because the cronjob_controller v2 has the lowest
    // granularity of 1 minute for scheduling job.
    func getJobFromTemplate2(cj *batchv1.CronJob, scheduledTime time.Time) (*batchv1.Job, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    					cel.Variable(NamespaceVarName, namespaceType.CelType()),
    					cel.Variable(RequestVarName, requestType.CelType()))
    
    				extended, err := baseEnv.Extend(
    					environment.VersionedOptions{
    						// Feature epoch was actually 1.26, but we artificially set it to 1.0 because these
    						// options should always be present.
    						IntroducedVersion: version.MajorMinor(1, 0),
    						EnvOptions:        envOpts,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    		// we only need its structure but not the variable itself
    		varOpts = append(varOpts, cel.Variable("authorizer", library.AuthorizerType))
    	}
    
    	return baseEnv.Extend(
    		environment.VersionedOptions{
    			// Feature epoch was actually 1.26, but we artificially set it to 1.0 because these
    			// options should always be present.
    			IntroducedVersion: version.MajorMinor(1, 0),
    			EnvOptions:        varOpts,
    			DeclTypes:         declTypes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. pkg/serviceaccount/claims_test.go

    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    func init() {
    	now = func() time.Time {
    		// epoch time: 1514764800
    		return time.Date(2018, time.January, 1, 0, 0, 0, 0, time.UTC)
    	}
    
    	newUUID = func() string {
    		// always return a fixed/static UUID for testing
    		return "fixed"
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/log/slog/value.go

    // The zero Value corresponds to nil.
    type Value struct {
    	_ [0]func() // disallow ==
    	// num holds the value for Kinds Int64, Uint64, Float64, Bool and Duration,
    	// the string length for KindString, and nanoseconds since the epoch for KindTime.
    	num uint64
    	// If any is of type Kind, then the value is in num as described above.
    	// If any is of type *time.Location, then the Kind is Time and time.Time value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/runtime/mstats.go

    	// is computed based on the amount of reachable data and the
    	// value of GOGC.
    	NextGC uint64
    
    	// LastGC is the time the last garbage collection finished, as
    	// nanoseconds since 1970 (the UNIX epoch).
    	LastGC uint64
    
    	// PauseTotalNs is the cumulative nanoseconds in GC
    	// stop-the-world pauses since the program started.
    	//
    	// During a stop-the-world pause, all goroutines are paused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. src/time/zoneinfo.go

    	}
    
    	year, _, _, yday := absDate(uint64(sec+unixToInternal+internalToAbsolute), false)
    
    	ysec := int64(yday*secondsPerDay) + sec%secondsPerDay
    
    	// Compute start of year in seconds since Unix epoch.
    	d := daysSinceEpoch(year)
    	abs := int64(d * secondsPerDay)
    	abs += absoluteToInternal + internalToUnix
    
    	startSec := int64(tzruleTime(year, startRule, stdOffset))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    				assertOnError: assertErrorMessage(`cbor: cannot set text for time.Time: parsing time "text" as "2006-01-02T15:04:05Z07:00": cannot parse "text" as "2006"`),
    			},
    		})
    
    		group(t, "epoch time", []test{
    			{
    				name:          "tag 1 timestamp unsigned integer",
    				in:            hex("c11a43b940e5"), // 1(1136214245)
    				want:          "2006-01-02T15:04:05Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top