Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for Epoch (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/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: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. src/net/http/fs.go

    // and passing it to [DetectContentType].
    // The name is otherwise unused; in particular it can be empty and is
    // never sent in the response.
    //
    // If modtime is not the zero time or Unix epoch, ServeContent
    // includes it in a Last-Modified header in the response. If the
    // request includes an If-Modified-Since header, ServeContent uses
    // modtime to decide whether the content needs to be sent at all.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

            return path;
        }
    
    /**
     * Retrieve the time this <code>SmbFile</code> was created. The value
     * returned is suitable for constructing a {@link java.util.Date} object
     * (i.e. seconds since Epoch 1970). Times should be the same as those
     * reported using the properties dialog of the Windows Explorer program.
     *
     * For Win95/98/Me this is actually the last write time. It is currently
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs.go

    	if err != nil {
    		return "", err
    	}
    	return strings.TrimSpace(string(out)), nil
    }
    
    func hgStatus(vcsHg *Cmd, rootDir string) (Status, error) {
    	// Output changeset ID and seconds since epoch.
    	out, err := vcsHg.runOutputVerboseOnly(rootDir, `log -l1 -T {node}:{date|hgdate}`)
    	if err != nil {
    		return Status{}, err
    	}
    
    	// Successful execution without output indicates an empty repo (no commits).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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