Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 254 for December (0.16 sec)

  1. src/time/time_test.go

    	{-1221681866, parsedTime{1931, April, 16, 3, 55, 34, 0, Thursday, 0, "UTC"}},
    	{-11644473600, parsedTime{1601, January, 1, 0, 0, 0, 0, Monday, 0, "UTC"}},
    	{599529660, parsedTime{1988, December, 31, 0, 1, 0, 0, Saturday, 0, "UTC"}},
    	{978220860, parsedTime{2000, December, 31, 0, 1, 0, 0, Sunday, 0, "UTC"}},
    }
    
    var nanoutctests = []TimeTest{
    	{0, parsedTime{1970, January, 1, 0, 0, 0, 1e8, Thursday, 0, "UTC"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. src/crypto/aes/block.go

    // license that can be found in the LICENSE file.
    
    // This Go implementation is derived in part from the reference
    // ANSI C implementation, which carries the following notice:
    //
    //	rijndael-alg-fst.c
    //
    //	@version 3.0 (December 2000)
    //
    //	Optimised ANSI C code for the Rijndael cipher (now AES)
    //
    //	@author Vincent Rijmen <******@****.***>
    //	@author Antoon Bosselaers <******@****.***>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/time/time.go

    	February
    	March
    	April
    	May
    	June
    	July
    	August
    	September
    	October
    	November
    	December
    )
    
    // String returns the English name of the month ("January", "February", ...).
    func (m Month) String() string {
    	if January <= m && m <= December {
    		return longMonthNames[m-1]
    	}
    	buf := make([]byte, 20)
    	n := fmtInt(buf, uint64(m))
    	return "%!Month(" + string(buf[n:]) + ")"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/time/example_test.go

    	fmt.Println(t.GoString())
    
    	// Output:
    	// time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
    	// time.Date(2009, time.November, 10, 23, 1, 0, 0, time.UTC)
    	// time.Date(2009, time.December, 10, 23, 1, 0, 0, time.UTC)
    	// time.Date(2013, time.February, 3, 19, 54, 0, 0, time.UTC)
    }
    
    func ExampleParse() {
    	// See the example for Time.Format for a thorough description of how
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Cookie.kt

      /** Returns a possibly-empty string with this cookie's value. */
      @get:JvmName("value") val value: String,
      /**
       * Returns the time that this cookie expires, in the same format as [System.currentTimeMillis].
       * This is December 31, 9999 if the cookie is not [persistent], in which case it will expire at the
       * end of the current session.
       *
       * This may return a value less than the current time, in which case the cookie is already
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/time/format.go

    	"Dec",
    }
    
    var longMonthNames = []string{
    	"January",
    	"February",
    	"March",
    	"April",
    	"May",
    	"June",
    	"July",
    	"August",
    	"September",
    	"October",
    	"November",
    	"December",
    }
    
    // match reports whether s1 and s2 match ignoring case.
    // It is assumed s1 and s2 are the same length.
    func match(s1, s2 string) bool {
    	for i := 0; i < len(s1); i++ {
    		c1 := s1[i]
    		c2 := s2[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     * weak references.
     *
     * <p><strong>Performance</strong>
     *
     * <p>The extra bookkeeping done by cycle detecting locks comes at some cost to performance.
     * Benchmarks (as of December 2011) show that:
     *
     * <ul>
     *   <li>for an unnested {@code lock()} and {@code unlock()}, a cycle detecting lock takes 38ns as
     *       opposed to the 24ns taken by a plain lock.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     * weak references.
     *
     * <p><strong>Performance</strong>
     *
     * <p>The extra bookkeeping done by cycle detecting locks comes at some cost to performance.
     * Benchmarks (as of December 2011) show that:
     *
     * <ul>
     *   <li>for an unnested {@code lock()} and {@code unlock()}, a cycle detecting lock takes 38ns as
     *       opposed to the 24ns taken by a plain lock.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set_test.go

    	// ReplicaSet controller's store.
    	// All use the same CreationTimestamp since ControllerRef should be able
    	// to handle that.
    	timestamp := metav1.Date(2014, time.December, 0, 0, 0, 0, 0, time.Local)
    	var controllers []*apps.ReplicaSet
    	for j := 1; j < 10; j++ {
    		rsSpec := newReplicaSet(1, labelMap)
    		rsSpec.CreationTimestamp = timestamp
    		rsSpec.Name = fmt.Sprintf("rs%d", j)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    			},
    			{
    				Source:         api.EventSource{Component: "kubelet"},
    				Message:        "Item 3",
    				FirstTimestamp: metav1.NewTime(time.Date(2002, time.December, 25, 0, 0, 0, 0, time.UTC)),
    				LastTimestamp:  metav1.NewTime(time.Date(2002, time.December, 25, 0, 0, 0, 0, time.UTC)),
    				Count:          1,
    				Type:           api.EventTypeNormal,
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top