Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 1979 (0.03 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPKCS1v15

    00000280  39 7e 17 d8 74 ae 05 a3  f5 3a 71 74 e8 b4 c9 a4  |9~..t....:qt....|
    00000290  1c 82 04 ca fe 5f 97 23  8a c1 f9 ce d1 5d 0e 81  |....._.#.....]..|
    000002a0  da 5f e1 b6 76 80 3c cf  9f 19 79 cf 33 d0 0a fe  |._..v.<...y.3...|
    000002b0  19 fc 2d 9a bb 24 cd d4  79 14 03 03 00 01 01 16  |..-..$..y.......|
    000002c0  03 03 00 28 00 00 00 00  00 00 00 00 28 78 b8 0b  |...(........(x..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/time/example_test.go

    	fmt.Println(time.Unix(2e9, -1e18).UTC()) // 2e9 seconds - 1e18 nanoseconds
    
    	t := time.Date(2001, time.September, 9, 1, 46, 40, 0, time.UTC)
    	fmt.Println(t.Unix())     // seconds since 1970
    	fmt.Println(t.UnixNano()) // nanoseconds since 1970
    
    	// Output:
    	// 2001-09-09 01:46:40 +0000 UTC
    	// 2001-09-09 01:46:40 +0000 UTC
    	// 2001-09-09 01:46:40 +0000 UTC
    	// 1000000000
    	// 1000000000000000000
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. src/runtime/mstats.go

    	pause_total_ns  uint64
    	pause_ns        [256]uint64 // circular buffer of recent gc pause lengths
    	pause_end       [256]uint64 // circular buffer of recent gc end times (nanoseconds since 1970)
    	numgc           uint32
    	numforcedgc     uint32  // number of user-forced GCs
    	gc_cpu_fraction float64 // fraction of CPU time used by GC
    
    	last_gc_nanotime uint64 // last gc (monotonic time)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. cmd/erasure-healing-common.go

    		return etag
    	}
    	return ""
    }
    
    // Beginning of unix time is treated as sentinel value here.
    var (
    	timeSentinel     = time.Unix(0, 0).UTC()
    	timeSentinel1970 = time.Unix(0, 1).UTC() // 1970 used for special cases when xlmeta.version == 0
    )
    
    // Boot modTimes up to disk count, setting the value to time sentinel.
    func bootModtimes(diskCount int) []time.Time {
    	modTimes := make([]time.Time, diskCount)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/net/http/socks_bundle.go

    // Package socks provides a SOCKS version 5 client implementation.
    //
    // SOCKS protocol version 5 is defined in RFC 1928.
    // Username/Password authentication for SOCKS version 5 is defined in
    // RFC 1929.
    //
    
    package http
    
    import (
    	"context"
    	"errors"
    	"io"
    	"net"
    	"strconv"
    	"time"
    )
    
    var (
    	socksnoDeadline   = time.Time{}
    	socksaLongTimeAgo = time.Unix(1, 0)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

            // just to make sure all the bases are covered...
            cal.set(Calendar.HOUR_OF_DAY, 0);
            cal.set(Calendar.MINUTE, 16);
            cal.set(Calendar.SECOND, 0);
            cal.set(Calendar.YEAR, 1976);
            cal.set(Calendar.MONTH, Calendar.NOVEMBER);
            cal.set(Calendar.DATE, 11);
    
            Date firstTestDate = cal.getTime();
    
            cal.set(Calendar.HOUR, 11);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

            assertTestExecuted(className: "example2.MyOtherTest", methodName: "bar", task: ":sub2:test")
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":sub2:sub3:test")
            events.tests.size() == 10 + 7 + 9
        }
    
        def "compatible with configure on demand"() {
            setup:
            10.times {
                settingsFile << "include ':sub$it'\n"
                file("sub$it/src/test/java/example/MyTest.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// may depend on old behavior where exec probe timeouts were ignored.
    	// Lock to default and remove after v1.22 based on user feedback that should be reflected in KEP #1972 update
    	ExecProbeTimeout featuregate.Feature = "ExecProbeTimeout"
    
    	// owner: @jpbetz
    	// alpha: v1.30
    	// Resource create requests using generateName are retried automatically by the apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/time/zoneinfo.go

    	isDST  bool   // is this zone Daylight Savings Time?
    }
    
    // A zoneTrans represents a single time zone transition.
    type zoneTrans struct {
    	when         int64 // transition time, in seconds since 1970 GMT
    	index        uint8 // the index of the zone that goes into effect at that time
    	isstd, isutc bool  // ignored - no idea what these mean
    }
    
    // alpha and omega are the beginning and end of time for zone
    // transitions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwiceRejected

    00000090  c2 87 4e c8 26 b3 89 88  da c0 b9 24 84 88 c0 76  |..N.&......$...v|
    000000a0  94 08 eb 56 5d fc 96 81  18 f3 5b 90 f1 38 e5 ae  |...V].....[..8..|
    000000b0  b5 4e 9a c1 19 19 1a b3  40 55 08 cb 0e 3b 93 b3  |.N......@U...;..|
    000000c0  d7 74 80 3a 7c 0d eb be  70 0e a9 50 88 d2 52 11  |.t.:|...p..P..R.|
    000000d0  2d 55 cf d9 9d aa 92 bd  15 ab 1a 62 b3 26 09 3f  |-U.........b.&.?|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top