Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Epoch (0.07 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestResult.java

        /**
         * Returns the time when this test started execution.
         *
         * @return The start time, in milliseconds since the epoch.
         */
        long getStartTime();
    
        /**
         * Returns the time when this test completed execution.
         *
         * @return The end t ime, in milliseconds since the epoch.
         */
        long getEndTime();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. build/README.md

    for builds. `make` itself is **not** hermetic.
    
    The Kubernetes build environment supports the [`SOURCE_DATE_EPOCH` environment
    variable](https://reproducible-builds.org/specs/source-date-epoch/) specified by
    the Reproducible Builds project, which can be set to a UNIX epoch timestamp.
    This will be used for the build timestamps embedded in compiled Go binaries,
    and maybe someday also Docker images.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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 (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top