Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for December (0.24 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/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)
  3. 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)
  4. 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)
  5. src/go/printer/testdata/parser.go

    	for _, ident := range idents {
    		assert(ident.Obj == nil, "identifier already declared or resolved")
    		if ident.Name != "_" {
    			obj := ast.NewObj(kind, ident.Name)
    			// remember the corresponding declaration for redeclaration
    			// errors and global variable resolution/typechecking phase
    			obj.Decl = decl
    			if alt := scope.Insert(obj); alt != nil && p.mode&DeclarationErrors != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. src/runtime/map.go

    	}
    	it.h = h
    
    	// grab snapshot of bucket state
    	it.B = h.B
    	it.buckets = h.buckets
    	if !t.Bucket.Pointers() {
    		// Allocate the current slice and remember pointers to both current and old.
    		// This preserves all relevant overflow buckets alive even if
    		// the table grows and/or overflow buckets are added to the table
    		// while we are iterating.
    		h.createOverflow()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    ----
    > gradle clean instrumentClasses2
    include::{snippetsPath}/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildInputFilesConfigUsingTask.out[]
    ----
    ====
    
    Remember that `files()`, `layout.files()` and `objects.fileCollection()` can take tasks as arguments, whereas `fileTree()` cannot.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    image::file-collection-vs-file-tree.png[]
    
    NOTE: Although `FileTree` extends `FileCollection` (an is-a relationship), their behaviors differ.
    In other words, you can use a file tree wherever a file collection is required, but remember that a file collection is a flat list/set of files, while a file tree is a file and directory hierarchy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

        TF_RETURN_IF_ERROR(
            HandleNode(n, /*should_revisit=*/nullptr, use_optimistic_mode));
        if (n->IsNextIteration()) {
          // If this is a backedge for a merge node then remember to reprocess the
          // merge the next time we run.
          for (const Edge* e : n->out_edges()) {
            if (e->dst()->IsMerge()) {
              should_revisit[e->dst()->id()] = true;
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    						}
    					}
    					s.f.setHome(v, outLocs)
    				} else {
    					if r := outRegs[0]; r != noRegister {
    						s.assignReg(r, v, v)
    					}
    				}
    				if tmpReg != noRegister {
    					// Remember the temp register allocation, if any.
    					if s.f.tempRegs == nil {
    						s.f.tempRegs = map[ID]*Register{}
    					}
    					s.f.tempRegs[v.ID] = &s.registers[tmpReg]
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top