Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for yearly (0.14 sec)

  1. src/index/suffixarray/sais2.go

    	// We must pass sais_64 a tmp buffer with at least maxID entries.
    	//
    	// The subproblem is guaranteed to have length at most len(sa)/2,
    	// so that sa can hold both the subproblem and its suffix array.
    	// Nearly all the time, however, the subproblem has length < len(sa)/3,
    	// in which case there is a subproblem-sized middle of sa that
    	// we can reuse for temporary space (saTmp).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		for _, ydt := range yearDayTests {
    			dt := Date(ydt.year, Month(ydt.month), ydt.day, 0, 0, 0, 0, loc)
    			yday := dt.YearDay()
    			if yday != ydt.yday {
    				t.Errorf("Date(%d-%02d-%02d in %v).YearDay() = %d, want %d",
    					ydt.year, ydt.month, ydt.day, loc, yday, ydt.yday)
    				continue
    			}
    
    			if ydt.year < 0 || ydt.year > 9999 {
    				continue
    			}
    			f := fmt.Sprintf("%04d-%02d-%02d %03d %+.2d00",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    		minTrigger = c.heapMarked
    	}
    
    	// If we let the trigger go too low, then if the application
    	// is allocating very rapidly we might end up in a situation
    	// where we're allocating black during a nearly always-on GC.
    	// The result of this is a growing heap and ultimately an
    	// increase in RSS. By capping us at a point >0, we're essentially
    	// saying that we're OK using more CPU during the GC to prevent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    				// append the service. Otherwise (TCP), change current listener to use protocol sniffing.
    				if currentListenerEntry.protocol.IsTCP() {
    					conflictType = HTTPOverTCP
    				} else {
    					// Exit early, listener already exists
    					return
    				}
    			}
    			opts = buildSidecarOutboundHTTPListenerOpts(listenerOpts, actualWildcards[0], listenerProtocol)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // `CreateClusters` do most of the heavy lifting.
    
      // Initializes some internal data structures.
      //
      // If this returns false then Initialize exited early (either because there is
      // nothing to do or we saw a graph that we can't handle) and not all the
      // fields in this MarkForCompilationPassImpl instance are set up.
      absl::StatusOr<bool> Initialize();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	// If this is nil, it is populated with the real thing in init.
    	scavenge func(n uintptr) (uintptr, int64)
    
    	// shouldStop is a callback called in the work loop and provides a
    	// point that can force the scavenger to stop early, for example because
    	// the scavenge policy dictates too much has been scavenged already.
    	//
    	// If this is nil, it is populated with the real thing in init.
    	shouldStop func() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    // operate in workspace mode. It should not be called by other commands,
    // for example 'go mod tidy', that don't operate in workspace mode.
    func InitWorkfile() {
    	// Initialize fsys early because we need overlay to read go.work file.
    	if err := fsys.Init(base.Cwd()); err != nil {
    		base.Fatal(err)
    	}
    	workFilePath = FindGoWork(base.Cwd())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    // some ipset(kubeClusterIPSet for example) have particular match rules and iptables jump relation should be sync separately.
    func (proxier *Proxier) writeIptablesRules() {
    
    	// Dismiss connects to localhost early in the service chain
    	loAddr := "127.0.0.0/8"
    	if proxier.ipFamily == v1.IPv6Protocol {
    		loAddr = "::1/128"
    	}
    	proxier.natRules.Write("-A", string(kubeServicesChain), "-s", loAddr, "-j", "RETURN")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	// enabled because they must be enabled before
    	// any non-leaf heap objects are marked. Since
    	// allocations are blocked until assists can
    	// happen, we want to enable assists as early as
    	// possible.
    	setGCPhase(_GCmark)
    
    	gcBgMarkPrepare() // Must happen before assists are enabled.
    	gcMarkRootPrepare()
    
    	// Mark all active tinyalloc blocks. Since we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top