Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for Epoch (0.08 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

    @ServiceScope(Scope.Global.class)
    public interface DaemonScanInfo {
        /**
         * @return the number of builds that the daemon has run
         */
        int getNumberOfBuilds();
    
        /**
         * @return The time (milliseconds) since epoch at which the daemon was started
         */
        long getStartedAt();
    
        /**
         * @return The idle timeout (milliseconds) of the daemon
         */
        long getIdleTimeout();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/time/time.go

    //
    // The zero Time value does not force a specific epoch for the time
    // representation. For example, to use the Unix epoch internally, we
    // could define that to distinguish a zero value from Jan 1 1970, that
    // time would be represented by sec=-1, nsec=1e9. However, it does
    // suggest a representation, namely using 1-1-1 00:00:00 UTC as the
    // epoch, and that's what we do.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    				container_memory_working_set_bytes{container="container_b",namespace="namespace_a",pod="pod_a"} 1000 1624396278302
    				# HELP container_start_time_seconds [STABLE] Start time of the container since unix epoch in seconds
    				# TYPE container_start_time_seconds gauge
    				container_start_time_seconds{container="container_a",namespace="namespace_a",pod="pod_a"} 1.6243962483020916e+09
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  4. 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)
  5. 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)
  6. 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)
  7. tools/packaging/common/istio-start.sh

      # redirecting stderr.
      INSTANCE_IP=${ISTIO_SVC_IP} POD_NAME=${POD_NAME} POD_NAMESPACE=${NS} "${ISTIO_BIN_BASE}/pilot-agent" proxy "${ISTIO_AGENT_FLAGS_ARRAY[@]}"
    else
      # Will run: ${ISTIO_BIN_BASE}/envoy -c $ENVOY_CFG --restart-epoch 0 --drain-time-s 2 --parent-shutdown-time-s 3 --service-cluster $SVC --service-node 'sidecar~${ISTIO_SVC_IP}~${POD_NAME}.${NS}.svc.cluster.local~${NS}.svc.cluster.local' $ISTIO_DEBUG >${ISTIO_LOG_DIR}/istio.log" istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_test.go

    		{name: "epoch", in: Time{Time: time.Unix(0, 0)}, out: []byte("\x541970-01-01T00:00:00Z")},                                                  // '1970-01-01T00:00:00Z'
    		{name: "pre-epoch", in: Date(1960, time.January, 1, 0, 0, 0, 0, time.UTC), out: []byte("\x541960-01-01T00:00:00Z")},                        // '1960-01-01T00:00:00Z'
    	} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top