Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for Epoch (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    	return version.MajorMinor(1, 30)
    }
    
    var baseOpts = append(baseOptsWithoutStrictCost, StrictCostOpt)
    
    var baseOptsWithoutStrictCost = []VersionedOptions{
    	{
    		// CEL 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{
    			cel.HomogeneousAggregateLiterals(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

    /**
     * Root container for profile information about a build.  This includes summary
     * information about the overall build timing and collection of project specific
     * information.  All timing information is stored as milliseconds since epoch times.
     * <p>
     * Setters are expected to be called in the following order:
     * <ul>
     * <li>setProfilingStarted</li>
     * <li>setBuildStarted</li>
     * <li>setSettingsEvaluated</li>
     * <li>setProjectsLoaded</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/syscall/types_windows.go

    	HighDateTime uint32
    }
    
    // Nanoseconds returns Filetime ft in nanoseconds
    // since Epoch (00:00:00 UTC, January 1, 1970).
    func (ft *Filetime) Nanoseconds() int64 {
    	// 100-nanosecond intervals since January 1, 1601
    	nsec := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime)
    	// change starting time to the Epoch (00:00:00 UTC, January 1, 1970)
    	nsec -= 116444736000000000
    	// convert into nanoseconds
    	nsec *= 100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K 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. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

        builder = builder.addAll(headersOf())
        builder = builder.add("", Date(0L))
        builder = builder.add("", Instant.EPOCH)
        builder = builder.set("", "")
        builder = builder.set("", Date(0L))
        builder = builder.set("", Instant.EPOCH)
        builder = builder.removeAll("")
        val get: String? = builder[""]
        val headers: Headers = builder.build()
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. pkg/kubelet/metrics/metrics.go

    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           "graceful_shutdown_start_time_seconds",
    			Help:           "Last graceful shutdown start time since unix epoch in seconds",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// GracefulShutdownEndTime is a gauge that records the time at which the kubelet completed graceful shutdown.
    	GracefulShutdownEndTime = metrics.NewGauge(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top