Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Epoch (0.21 sec)

  1. 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)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message MicroTime {
      // Represents seconds of UTC time since Unix epoch
      // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
      // 9999-12-31T23:59:59Z inclusive.
      optional int64 seconds = 1;
    
      // Non-negative fractions of a second at nanosecond resolution. Negative
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message MicroTime {
      // Represents seconds of UTC time since Unix epoch
      // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
      // 9999-12-31T23:59:59Z inclusive.
      optional int64 seconds = 1;
    
      // Non-negative fractions of a second at nanosecond resolution. Negative
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// crypto/rand.
    	// The Reader must be safe for use by multiple goroutines.
    	Rand io.Reader
    
    	// Time returns the current time as the number of seconds since the epoch.
    	// If Time is nil, TLS uses time.Now.
    	Time func() time.Time
    
    	// Certificates contains one or more certificate chains to present to the
    	// other side of the connection. The first certificate compatible with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    		return errors.New("Presign cannot be generated without access and secret keys")
    	}
    
    	// FIXME: Remove following portion of code after fixing a bug in minio-go preSignV2.
    
    	d := UTCNow()
    	// Find epoch expires when the request will expire.
    	epochExpires := d.Unix() + expires
    
    	// Add expires header if not present.
    	expiresStr := req.Header.Get("Expires")
    	if expiresStr == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      int total_test_count() const;
    
      // Gets the number of tests that should run.
      int test_to_run_count() const;
    
      // Gets the time of the test program start, in ms from the start of the
      // UNIX epoch.
      TimeInMillis start_timestamp() const;
    
      // Gets the elapsed time, in milliseconds.
      TimeInMillis elapsed_time() const;
    
      // Returns true iff the unit test passed (i.e. all test cases passed).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      int total_test_count() const;
    
      // Gets the number of tests that should run.
      int test_to_run_count() const;
    
      // Gets the time of the test program start, in ms from the start of the
      // UNIX epoch.
      TimeInMillis start_timestamp() const;
    
      // Gets the elapsed time, in milliseconds.
      TimeInMillis elapsed_time() const;
    
      // Returns true iff the unit test passed (i.e. all test cases passed).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    // mark bits are repurposed as allocation bits when
    // the span is swept.
    func newAllocBits(nelems uintptr) *gcBits {
    	return newMarkBits(nelems)
    }
    
    // nextMarkBitArenaEpoch establishes a new epoch for the arenas
    // holding the mark bits. The arenas are named relative to the
    // current GC cycle which is demarcated by the call to finishweep_m.
    //
    // All current spans have been swept.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	if err := ctxt.Out.Open(p); err != nil {
    		Exitf("cannot create %s: %v", p, err)
    	}
    }
    
    // cleanTimeStamps resets the timestamps for the specified list of
    // existing files to the Unix epoch (1970-01-01 00:00:00 +0000 UTC).
    // We take this step in order to help preserve reproducible builds;
    // this seems to be primarily needed for external linking on on Darwin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top