Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 218 for Seven (0.06 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    	now := time.Now().UTC()
    
    	obj1 := ObjectOpts{
    		Name:     "obj1",
    		IsLatest: true,
    		ModTime:  now,
    	}
    
    	obj2 := ObjectOpts{
    		Name:    "obj2",
    		ModTime: now,
    	}
    
    	// Go back seven days in the past
    	now = now.Add(7 * 24 * time.Hour)
    
    	evt := lc.eval(obj1, now)
    	if evt.Action != TransitionAction {
    		t.Fatalf("Expected action: %s but got %s", TransitionAction, evt.Action)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// That is, i+1 is the position of the start of an LMS-substring.
    	// These could be hoisted out into a function with a callback,
    	// but at a significant speed cost. Instead, we just write these
    	// seven lines a few times in this source file. The copies below
    	// refer back to the pattern established by this original as the
    	// "LMS-substring iterator".
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	{"dot slice", "<{{.}}>", "<[-1 -2 -3]>", []int{-1, -2, -3}, true},
    	{"dot map", "<{{.}}>", "<map[two:22]>", map[string]int{"two": 22}, true},
    	{"dot struct", "<{{.}}>", "<{7 seven}>", struct {
    		a int
    		b string
    	}{7, "seven"}, true},
    
    	// Variables.
    	{"$ int", "{{$}}", "123", 123, true},
    	{"$.I", "{{$.I}}", "17", tVal, true},
    	{"$.U.V", "{{$.U.V}}", "v", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    	{"dot slice", "<{{.}}>", "&lt;[-1 -2 -3]>", []int{-1, -2, -3}, true},
    	{"dot map", "<{{.}}>", "&lt;map[two:22]>", map[string]int{"two": 22}, true},
    	{"dot struct", "<{{.}}>", "&lt;{7 seven}>", struct {
    		a int
    		b string
    	}{7, "seven"}, true},
    
    	// Variables.
    	{"$ int", "{{$}}", "123", 123, true},
    	{"$.I", "{{$.I}}", "17", tVal, true},
    	{"$.U.V", "{{$.U.V}}", "v", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/time/format.go

    // These are predefined layouts for use in [Time.Format] and [time.Parse].
    // The reference time used in these layouts is the specific time stamp:
    //
    //	01/02 03:04:05PM '06 -0700
    //
    // (January 2, 15:04:05, 2006, in time zone seven hours west of GMT).
    // That value is recorded as the constant named [Layout], listed below. As a Unix
    // time, this is 1136239445. Since MST is GMT-0700, the reference would be
    // printed by the Unix date command as:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// with random data before the first server handshake.
    	//
    	// Deprecated: if this field is left at zero, session ticket keys will be
    	// automatically rotated every day and dropped after seven days. For
    	// customizing the rotation schedule or synchronizing servers that are
    	// terminating connections for the same host, use SetSessionTicketKeys.
    	SessionTicketKey [32]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/math/big/float_test.go

    		{"0x2.8p-149", math.Float32frombits(0x000000002), Below}, // rounded down to even
    		{"0x2.9p-149", math.Float32frombits(0x000000003), Above},
    
    		{"0x3.0p-149", math.Float32frombits(0x000000003), Exact},
    		{"0x3.7p-149", math.Float32frombits(0x000000003), Below},
    		{"0x3.8p-149", math.Float32frombits(0x000000004), Above}, // rounded up to even
    
    		{"0x4.0p-149", math.Float32frombits(0x000000004), Exact},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			schema: schemas(listSetType(&stringType), listSetType(&stringType), listSetType(&integerType)),
    			expectCost: map[string]int64{
    				// equal even though order is different
    				"self.val1 == ['c', 'b', 'a']":                   3,
    				"self.val1 == self.val2":                         5,
    				"'a' in self.val1":                               5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>It's acceptable for the underlying multimap to contain null keys, and even null values
       * provided that the function is capable of accepting null input. The transformed multimap might
       * contain null values, if the function sometimes gives a null result.
       *
       * <p>The returned multimap is not thread-safe or serializable, even if the underlying multimap
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>It's acceptable for the underlying multimap to contain null keys, and even null values
       * provided that the function is capable of accepting null input. The transformed multimap might
       * contain null values, if the function sometimes gives a null result.
       *
       * <p>The returned multimap is not thread-safe or serializable, even if the underlying multimap
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top